diff --git a/core/includes/file.inc b/core/includes/file.inc
index 36fb006..2c6b5c1 100644
--- a/core/includes/file.inc
+++ b/core/includes/file.inc
@@ -100,7 +100,6 @@ function file_stream_wrapper_valid_scheme($scheme) {
   return \Drupal::service('file_system')->validScheme($scheme);
 }
 
-
 /**
  * Returns the part of a URI after the schema.
  *
@@ -927,7 +926,6 @@ function file_unmanaged_delete_recursive($path, $callback = NULL) {
   return file_unmanaged_delete($path);
 }
 
-
 /**
  * Moves an uploaded file to a new location.
  *
diff --git a/core/includes/install.inc b/core/includes/install.inc
index 399476f..dc4a6ff 100644
--- a/core/includes/install.inc
+++ b/core/includes/install.inc
@@ -380,7 +380,6 @@ function _drupal_rewrite_settings_is_simple($type, $value) {
   return $is_integer || $is_float || $is_string || $is_boolean_or_null;
 }
 
-
 /**
  * Helper for drupal_rewrite_settings().
  *
@@ -451,7 +450,6 @@ function _drupal_rewrite_settings_dump($variable, $variable_name) {
   return $return;
 }
 
-
 /**
  * Helper for drupal_rewrite_settings().
  *
diff --git a/core/includes/unicode.inc b/core/includes/unicode.inc
index 6a157dc..e9cc76c 100644
--- a/core/includes/unicode.inc
+++ b/core/includes/unicode.inc
@@ -10,6 +10,7 @@
 /**
  * Returns Unicode library status and errors.
  */
+
 /**
  * Moves unicode_requirements() logic to system_requirements().
  *
diff --git a/core/lib/Drupal.php b/core/lib/Drupal.php
index 61982c3..1b6c5b9 100644
--- a/core/lib/Drupal.php
+++ b/core/lib/Drupal.php
@@ -141,7 +141,6 @@ public static function hasContainer() {
     return static::$container !== NULL;
   }
 
-
   /**
    * Retrieves a service from the container.
    *
diff --git a/core/lib/Drupal/Component/Assertion/Inspector.php b/core/lib/Drupal/Component/Assertion/Inspector.php
index dbf3f51..681f192 100644
--- a/core/lib/Drupal/Component/Assertion/Inspector.php
+++ b/core/lib/Drupal/Component/Assertion/Inspector.php
@@ -333,7 +333,6 @@ public static function assertAllMatch($pattern, $traversable, $case_sensitive =
     return FALSE;
   }
 
-
   /**
    * Asserts that all members are strings matching a regular expression.
    *
diff --git a/core/lib/Drupal/Component/Datetime/DateTimePlus.php b/core/lib/Drupal/Component/Datetime/DateTimePlus.php
index 1161168..e3c2c1d 100644
--- a/core/lib/Drupal/Component/Datetime/DateTimePlus.php
+++ b/core/lib/Drupal/Component/Datetime/DateTimePlus.php
@@ -477,7 +477,6 @@ protected function prepareFormat($format) {
     return $format;
   }
 
-
   /**
    * Examines getLastErrors() to see what errors to report.
    *
diff --git a/core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php b/core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
index dfd2a43..b4c1da8 100644
--- a/core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
+++ b/core/lib/Drupal/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumper.php
@@ -282,7 +282,6 @@ protected function dumpMethodCalls(array $calls) {
     return $code;
   }
 
-
   /**
    * Dumps a collection to a PHP array.
    *
diff --git a/core/lib/Drupal/Component/Utility/Random.php b/core/lib/Drupal/Component/Utility/Random.php
index cf34835..d1f25ff 100644
--- a/core/lib/Drupal/Component/Utility/Random.php
+++ b/core/lib/Drupal/Component/Utility/Random.php
@@ -259,7 +259,6 @@ public function paragraphs($paragraph_count = 12) {
     return $output;
   }
 
-
   /**
    * Create a placeholder image.
    *
diff --git a/core/lib/Drupal/Component/Uuid/Com.php b/core/lib/Drupal/Component/Uuid/Com.php
index f9305f5..c18b39a 100644
--- a/core/lib/Drupal/Component/Uuid/Com.php
+++ b/core/lib/Drupal/Component/Uuid/Com.php
@@ -8,6 +8,7 @@
  * @see http://php.net/com_create_guid
  */
 class Com implements UuidInterface {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Access/AccessResultForbidden.php b/core/lib/Drupal/Core/Access/AccessResultForbidden.php
index 3edae61..dbdbafe 100644
--- a/core/lib/Drupal/Core/Access/AccessResultForbidden.php
+++ b/core/lib/Drupal/Core/Access/AccessResultForbidden.php
@@ -24,7 +24,6 @@ public function __construct($reason = NULL) {
     $this->reason = $reason;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Access/CheckProvider.php b/core/lib/Drupal/Core/Access/CheckProvider.php
index d6ba1cf..51423bd 100644
--- a/core/lib/Drupal/Core/Access/CheckProvider.php
+++ b/core/lib/Drupal/Core/Access/CheckProvider.php
@@ -142,6 +142,7 @@ protected function applies(Route $route) {
 
     return $checks;
   }
+
   /**
    * Compiles a mapping of requirement keys to access checker service IDs.
    */
diff --git a/core/lib/Drupal/Core/Access/CheckProviderInterface.php b/core/lib/Drupal/Core/Access/CheckProviderInterface.php
index a94a92c..35e3c18 100644
--- a/core/lib/Drupal/Core/Access/CheckProviderInterface.php
+++ b/core/lib/Drupal/Core/Access/CheckProviderInterface.php
@@ -15,7 +15,6 @@
  */
 interface CheckProviderInterface {
 
-
   /**
    * For each route, saves a list of applicable access checks to the route.
    *
diff --git a/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php b/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
index 53d6e82..a55b0ea 100644
--- a/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
+++ b/core/lib/Drupal/Core/Ajax/OpenModalDialogCommand.php
@@ -8,6 +8,7 @@
  * @ingroup ajax
  */
 class OpenModalDialogCommand extends OpenDialogCommand {
+
   /**
    * Constructs an OpenModalDialog object.
    *
diff --git a/core/lib/Drupal/Core/Config/DatabaseStorage.php b/core/lib/Drupal/Core/Config/DatabaseStorage.php
index 0ac6134..2560a46 100644
--- a/core/lib/Drupal/Core/Config/DatabaseStorage.php
+++ b/core/lib/Drupal/Core/Config/DatabaseStorage.php
@@ -228,7 +228,6 @@ public function delete($name) {
       ->execute();
   }
 
-
   /**
    * Implements Drupal\Core\Config\StorageInterface::rename().
    *
diff --git a/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php b/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php
index 7b2ee06..990a5b4 100644
--- a/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php
+++ b/core/lib/Drupal/Core/Config/Entity/ThirdPartySettingsInterface.php
@@ -41,7 +41,6 @@ public function setThirdPartySetting($module, $key, $value);
    */
   public function getThirdPartySetting($module, $key, $default = NULL);
 
-
   /**
    * Gets all third-party settings of a given module.
    *
diff --git a/core/lib/Drupal/Core/Controller/ControllerResolver.php b/core/lib/Drupal/Core/Controller/ControllerResolver.php
index c16a087..6dcda4a 100644
--- a/core/lib/Drupal/Core/Controller/ControllerResolver.php
+++ b/core/lib/Drupal/Core/Controller/ControllerResolver.php
@@ -80,7 +80,6 @@ public function getControllerFromDefinition($controller, $path = '') {
     return $callable;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
index a7c1496..bbf8668 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
@@ -165,7 +165,6 @@ public static function open(array &$connection_options = []) {
     return $pdo;
   }
 
-
   /**
    * Destructor for the SQLite connection.
    *
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
index 6d7caab..5eaa515 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
@@ -8,6 +8,7 @@
  * SQLite implementation of \Drupal\Core\Database\Query\Select.
  */
 class Select extends QuerySelect {
+
   public function forUpdate($set = TRUE) {
     // SQLite does not support FOR UPDATE so nothing to do.
     return $this;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
index c58ff7d..386912f 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
@@ -11,6 +11,7 @@
  * exactly the effect (it is implemented by DROPing the table).
  */
 class Truncate extends QueryTruncate {
+
   public function __toString() {
     // Create a sanitized comment string to prepend to the query.
     $comments = $this->connection->makeComment($this->comments);
diff --git a/core/lib/Drupal/Core/Datetime/DateHelper.php b/core/lib/Drupal/Core/Datetime/DateHelper.php
index b3a8ce7..168ef62 100644
--- a/core/lib/Drupal/Core/Datetime/DateHelper.php
+++ b/core/lib/Drupal/Core/Datetime/DateHelper.php
@@ -334,7 +334,6 @@ public static function days($required = FALSE, $month = NULL, $year = NULL) {
     return !$required ? $none + $range : $range;
   }
 
-
   /**
    * Constructs an array of hours.
    *
diff --git a/core/lib/Drupal/Core/Entity/Enhancer/EntityRouteEnhancer.php b/core/lib/Drupal/Core/Entity/Enhancer/EntityRouteEnhancer.php
index 850d404..f383fbc 100644
--- a/core/lib/Drupal/Core/Entity/Enhancer/EntityRouteEnhancer.php
+++ b/core/lib/Drupal/Core/Entity/Enhancer/EntityRouteEnhancer.php
@@ -68,7 +68,6 @@ protected function enhanceEntityForm(array $defaults, Request $request) {
     return $defaults;
   }
 
-
   /**
    * Update defaults for an entity list.
    *
diff --git a/core/lib/Drupal/Core/Entity/EntityType.php b/core/lib/Drupal/Core/Entity/EntityType.php
index 28f5b4e..52a9a60 100644
--- a/core/lib/Drupal/Core/Entity/EntityType.php
+++ b/core/lib/Drupal/Core/Entity/EntityType.php
@@ -837,7 +837,6 @@ public function getGroup() {
     return $this->group;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
index 50b81bb..7e5db5b 100644
--- a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
+++ b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
@@ -64,7 +64,6 @@ public function __construct(EntityTypeInterface $entity_type, $conjunction, Conn
     $this->connection = $connection;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php b/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php
index c791bb5..f865cf7 100644
--- a/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php
+++ b/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php
@@ -65,7 +65,6 @@ public function notExistsAggregate($field, $function, $langcode = NULL) {
     return $this->conditionAggregate->notExists($field, $function, $langcode);
   }
 
-
   /**
    * Adds the aggregations to the query.
    *
@@ -126,7 +125,6 @@ protected function addSortAggregate() {
     return $this;
   }
 
-
   /**
    * Overrides \Drupal\Core\Entity\Query\Sql\Query::finish().
    *
diff --git a/core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php b/core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php
index ea8bff1..d6b9d17 100644
--- a/core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php
+++ b/core/lib/Drupal/Core/EventSubscriber/ActiveLinkResponseFilter.php
@@ -97,7 +97,6 @@ public function onResponse(FilterResponseEvent $event) {
     ));
   }
 
-
   /**
    * Sets the "is-active" class on relevant links.
    *
diff --git a/core/lib/Drupal/Core/EventSubscriber/EnforcedFormResponseSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/EnforcedFormResponseSubscriber.php
index 3516426..3d78215 100644
--- a/core/lib/Drupal/Core/EventSubscriber/EnforcedFormResponseSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/EnforcedFormResponseSubscriber.php
@@ -34,7 +34,6 @@ public function onKernelResponse(FilterResponseEvent $event) {
     }
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php
index 5b838d4..99c7b02 100644
--- a/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php
@@ -43,7 +43,6 @@ public function __construct(ConfigFactoryInterface $config_factory, HttpKernelIn
     $this->httpKernel = $http_kernel;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Extension/ModuleHandler.php b/core/lib/Drupal/Core/Extension/ModuleHandler.php
index 2a2113f..a3555cd 100644
--- a/core/lib/Drupal/Core/Extension/ModuleHandler.php
+++ b/core/lib/Drupal/Core/Extension/ModuleHandler.php
@@ -429,7 +429,6 @@ public function invokeAllDeprecated($description, $hook, array $args = []) {
     return $result;
   }
 
-
   /**
    * Triggers an E_USER_DEPRECATED error if any module implements the hook.
    *
diff --git a/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php b/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php
index a82be6a..00433f0 100644
--- a/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php
+++ b/core/lib/Drupal/Core/Extension/ThemeHandlerInterface.php
@@ -92,7 +92,6 @@ public function uninstall(array $theme_list);
    */
   public function listInfo();
 
-
   /**
    * Adds a theme extension to the internal listing.
    *
diff --git a/core/lib/Drupal/Core/Field/FieldConfigBase.php b/core/lib/Drupal/Core/Field/FieldConfigBase.php
index a32ff42..9bb5228 100644
--- a/core/lib/Drupal/Core/Field/FieldConfigBase.php
+++ b/core/lib/Drupal/Core/Field/FieldConfigBase.php
@@ -263,7 +263,6 @@ public function onDependencyRemoval(array $dependencies) {
     return $changed;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
index 00fe409..22da3be 100644
--- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
+++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldType/DecimalItem.php
@@ -105,7 +105,6 @@ public function getConstraints() {
     return $constraints;
   }
 
-
   /**
    * {@inheritdoc}
    */
@@ -154,7 +153,6 @@ public static function generateSampleValue(FieldDefinitionInterface $field_defin
     return $values;
   }
 
-
   /**
    * Helper method to get the number of decimal digits out of a decimal number.
    *
diff --git a/core/lib/Drupal/Core/Field/WidgetPluginManager.php b/core/lib/Drupal/Core/Field/WidgetPluginManager.php
index c7c2d79..80e9718 100644
--- a/core/lib/Drupal/Core/Field/WidgetPluginManager.php
+++ b/core/lib/Drupal/Core/Field/WidgetPluginManager.php
@@ -125,7 +125,6 @@ public function createInstance($plugin_id, array $configuration = []) {
     return new $plugin_class($plugin_id, $plugin_definition, $configuration['field_definition'], $configuration['settings'], $configuration['third_party_settings']);
   }
 
-
   /**
    * Merges default values for widget configuration.
    *
diff --git a/core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php b/core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php
index a910693..ce0e283 100644
--- a/core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php
+++ b/core/lib/Drupal/Core/ImageToolkit/ImageToolkitBase.php
@@ -46,7 +46,6 @@
    */
   protected $logger;
 
-
   /**
    * Constructs an ImageToolkitBase object.
    *
diff --git a/core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php b/core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php
index 39090e2..1f16302 100644
--- a/core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php
+++ b/core/lib/Drupal/Core/Menu/InaccessibleMenuLink.php
@@ -69,7 +69,6 @@ public function getCacheMaxAge() {
     return $this->wrappedLink->getCacheMaxAge();
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Menu/MenuLinkManager.php b/core/lib/Drupal/Core/Menu/MenuLinkManager.php
index d6a6094..af2e4a5 100644
--- a/core/lib/Drupal/Core/Menu/MenuLinkManager.php
+++ b/core/lib/Drupal/Core/Menu/MenuLinkManager.php
@@ -93,7 +93,6 @@ class MenuLinkManager implements MenuLinkManagerInterface {
    */
   protected $moduleHandler;
 
-
   /**
    * Constructs a \Drupal\Core\Menu\MenuLinkManager object.
    *
diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
index 2a3181e..55a9522 100644
--- a/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
+++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
@@ -86,7 +86,6 @@ protected function getInbound() {
     return $this->sortedInbound;
   }
 
-
   /**
    * Adds an outbound processor object to the $outboundProcessors property.
    *
diff --git a/core/lib/Drupal/Core/Plugin/Context/Context.php b/core/lib/Drupal/Core/Plugin/Context/Context.php
index 4957120..a33eca2 100644
--- a/core/lib/Drupal/Core/Plugin/Context/Context.php
+++ b/core/lib/Drupal/Core/Plugin/Context/Context.php
@@ -123,7 +123,6 @@ public function getContextData() {
     return $this->contextData;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/lib/Drupal/Core/Queue/QueueFactory.php b/core/lib/Drupal/Core/Queue/QueueFactory.php
index 6df7c5e..cfb0725 100644
--- a/core/lib/Drupal/Core/Queue/QueueFactory.php
+++ b/core/lib/Drupal/Core/Queue/QueueFactory.php
@@ -27,7 +27,6 @@ class QueueFactory implements ContainerAwareInterface {
    */
   protected $settings;
 
-
   /**
    * Constructs a queue factory.
    */
diff --git a/core/lib/Drupal/Core/Routing/AccessAwareRouterInterface.php b/core/lib/Drupal/Core/Routing/AccessAwareRouterInterface.php
index 31ce1c4..7b0c1c1 100644
--- a/core/lib/Drupal/Core/Routing/AccessAwareRouterInterface.php
+++ b/core/lib/Drupal/Core/Routing/AccessAwareRouterInterface.php
@@ -24,7 +24,6 @@
    */
   public function matchRequest(Request $request);
 
-
   /**
    * {@inheritdoc}
    *
diff --git a/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php b/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
index fa12ab4..2927739 100644
--- a/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
@@ -69,7 +69,6 @@ public function stream_lock($operation) {
     return TRUE;
   }
 
-
   /**
    * Support for fwrite(), file_put_contents() etc.
    *
diff --git a/core/lib/Drupal/Core/Theme/ThemeAccessCheck.php b/core/lib/Drupal/Core/Theme/ThemeAccessCheck.php
index ed596e8..f073f46 100644
--- a/core/lib/Drupal/Core/Theme/ThemeAccessCheck.php
+++ b/core/lib/Drupal/Core/Theme/ThemeAccessCheck.php
@@ -27,6 +27,7 @@ class ThemeAccessCheck implements AccessInterface {
   public function __construct(ThemeHandlerInterface $theme_handler) {
     $this->themeHandler = $theme_handler;
   }
+
   /**
    * Checks access to the theme for routing.
    *
diff --git a/core/lib/Drupal/Core/Validation/ConstraintManager.php b/core/lib/Drupal/Core/Validation/ConstraintManager.php
index a2bd604..79da1d6 100644
--- a/core/lib/Drupal/Core/Validation/ConstraintManager.php
+++ b/core/lib/Drupal/Core/Validation/ConstraintManager.php
@@ -56,7 +56,6 @@ protected function getDiscovery() {
     return $this->discovery;
   }
 
-
   /**
    * Creates a validation constraint.
    *
diff --git a/core/modules/aggregator/src/Entity/Item.php b/core/modules/aggregator/src/Entity/Item.php
index ef0c6d2..8687481 100644
--- a/core/modules/aggregator/src/Entity/Item.php
+++ b/core/modules/aggregator/src/Entity/Item.php
@@ -232,7 +232,6 @@ public function getCacheTagsToInvalidate() {
     return Feed::load($this->getFeedId())->getCacheTags();
   }
 
-
   /**
    * Entity URI callback.
    */
diff --git a/core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php b/core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php
index f4c8e2a..18390c7 100644
--- a/core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php
+++ b/core/modules/aggregator/src/Plugin/Block/AggregatorFeedBlock.php
@@ -57,7 +57,6 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition
     $this->itemStorage = $item_storage;
   }
 
-
   /**
    * {@inheritdoc}
    */
@@ -71,7 +70,6 @@ public static function create(ContainerInterface $container, array $configuratio
     );
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/src/Plugin/Field/FieldFormatter/AggregatorTitleFormatter.php b/core/modules/aggregator/src/Plugin/Field/FieldFormatter/AggregatorTitleFormatter.php
index 25e33e9..de8f703 100644
--- a/core/modules/aggregator/src/Plugin/Field/FieldFormatter/AggregatorTitleFormatter.php
+++ b/core/modules/aggregator/src/Plugin/Field/FieldFormatter/AggregatorTitleFormatter.php
@@ -21,6 +21,7 @@
  * )
  */
 class AggregatorTitleFormatter extends FormatterBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/aggregator/tests/src/Functional/DeleteFeedItemTest.php b/core/modules/aggregator/tests/src/Functional/DeleteFeedItemTest.php
index a8527f6..0708a9e 100644
--- a/core/modules/aggregator/tests/src/Functional/DeleteFeedItemTest.php
+++ b/core/modules/aggregator/tests/src/Functional/DeleteFeedItemTest.php
@@ -8,6 +8,7 @@
  * @group aggregator
  */
 class DeleteFeedItemTest extends AggregatorTestBase {
+
   /**
    * Tests running "delete items" from 'admin/config/services/aggregator' page.
    */
diff --git a/core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php b/core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php
index 0f76eee..a7ec0ed 100644
--- a/core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php
+++ b/core/modules/aggregator/tests/src/Functional/UpdateFeedItemTest.php
@@ -10,6 +10,7 @@
  * @group aggregator
  */
 class UpdateFeedItemTest extends AggregatorTestBase {
+
   /**
    * Tests running "update items" from 'admin/config/services/aggregator' page.
    */
diff --git a/core/modules/aggregator/tests/src/Functional/UpdateFeedTest.php b/core/modules/aggregator/tests/src/Functional/UpdateFeedTest.php
index a81e0ae..0c76f97 100644
--- a/core/modules/aggregator/tests/src/Functional/UpdateFeedTest.php
+++ b/core/modules/aggregator/tests/src/Functional/UpdateFeedTest.php
@@ -8,6 +8,7 @@
  * @group aggregator
  */
 class UpdateFeedTest extends AggregatorTestBase {
+
   /**
    * Creates a feed and attempts to update it.
    */
diff --git a/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php b/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php
index 56c0339..caef56d 100644
--- a/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php
+++ b/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php
@@ -109,6 +109,8 @@ public function testSettingsForm() {
 namespace Drupal\Core\Form;
 
 if (!function_exists('drupal_set_message')) {
+
   function drupal_set_message() {
   }
+
 }
diff --git a/core/modules/block/src/BlockAccessControlHandler.php b/core/modules/block/src/BlockAccessControlHandler.php
index 35af61e..2652251 100644
--- a/core/modules/block/src/BlockAccessControlHandler.php
+++ b/core/modules/block/src/BlockAccessControlHandler.php
@@ -67,7 +67,6 @@ public function __construct(EntityTypeInterface $entity_type, ContextHandlerInte
     $this->contextRepository = $context_repository;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php b/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php
index a016ab9..a77c2e1 100644
--- a/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php
+++ b/core/modules/block_content/tests/src/Functional/Views/BlockContentFieldFilterTest.php
@@ -31,7 +31,6 @@ class BlockContentFieldFilterTest extends BlockContentTestBase {
    */
   public $blockContentInfos = [];
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/book/src/BookOutlineStorageInterface.php b/core/modules/book/src/BookOutlineStorageInterface.php
index c09c52a..820bc1b 100644
--- a/core/modules/book/src/BookOutlineStorageInterface.php
+++ b/core/modules/book/src/BookOutlineStorageInterface.php
@@ -110,7 +110,6 @@ public function getBookMenuTree($bid, $parameters, $min_depth, $max_depth);
    */
   public function insert($link, $parents);
 
-
   /**
    * Updates book reference for links that were moved between books.
    *
diff --git a/core/modules/comment/src/Tests/CommentPagerTest.php b/core/modules/comment/src/Tests/CommentPagerTest.php
index 48326bc..2f2a240 100644
--- a/core/modules/comment/src/Tests/CommentPagerTest.php
+++ b/core/modules/comment/src/Tests/CommentPagerTest.php
@@ -12,6 +12,7 @@
  * @group comment
  */
 class CommentPagerTest extends CommentTestBase {
+
   /**
    * Confirms comment paging works correctly with flat and threaded comments.
    */
diff --git a/core/modules/comment/tests/src/Functional/CommentThreadingTest.php b/core/modules/comment/tests/src/Functional/CommentThreadingTest.php
index 9fe7aea..e70629e 100644
--- a/core/modules/comment/tests/src/Functional/CommentThreadingTest.php
+++ b/core/modules/comment/tests/src/Functional/CommentThreadingTest.php
@@ -10,6 +10,7 @@
  * @group comment
  */
 class CommentThreadingTest extends CommentTestBase {
+
   /**
    * Tests the comment threading.
    */
diff --git a/core/modules/comment/tests/src/Functional/CommentTitleTest.php b/core/modules/comment/tests/src/Functional/CommentTitleTest.php
index 65c4937..9cd7946 100644
--- a/core/modules/comment/tests/src/Functional/CommentTitleTest.php
+++ b/core/modules/comment/tests/src/Functional/CommentTitleTest.php
@@ -9,6 +9,7 @@
  * @group comment
  */
 class CommentTitleTest extends CommentTestBase {
+
   /**
    * Tests markup for comments with empty titles.
    */
diff --git a/core/modules/comment/tests/src/Functional/CommentUninstallTest.php b/core/modules/comment/tests/src/Functional/CommentUninstallTest.php
index 6e0c8a2..96d7eea 100644
--- a/core/modules/comment/tests/src/Functional/CommentUninstallTest.php
+++ b/core/modules/comment/tests/src/Functional/CommentUninstallTest.php
@@ -52,7 +52,6 @@ public function testCommentUninstallWithField() {
     }
   }
 
-
   /**
    * Tests if uninstallation succeeds if the field has been deleted beforehand.
    */
diff --git a/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php b/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php
index 17e04b5..c6e39f8 100644
--- a/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php
+++ b/core/modules/comment/tests/src/Functional/Views/CommentRestExportTest.php
@@ -46,7 +46,6 @@ protected function setUp($import_test_views = TRUE) {
     $this->drupalLogin($user);
   }
 
-
   /**
    * Test comment row.
    */
diff --git a/core/modules/comment/tests/src/Functional/Views/WizardTest.php b/core/modules/comment/tests/src/Functional/Views/WizardTest.php
index 62fada9..9c02fcc 100644
--- a/core/modules/comment/tests/src/Functional/Views/WizardTest.php
+++ b/core/modules/comment/tests/src/Functional/Views/WizardTest.php
@@ -23,7 +23,6 @@ class WizardTest extends WizardTestBase {
    */
   public static $modules = ['node', 'comment'];
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php b/core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php
index 8aaae75..662f5f3 100644
--- a/core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php
+++ b/core/modules/comment/tests/src/Unit/CommentLinkBuilderTest.php
@@ -324,7 +324,9 @@ protected function getMockNode($has_field, $comment_status, $form_location, $com
 namespace Drupal\comment;
 
 if (!function_exists('history_read')) {
+
   function history_read() {
     return 0;
   }
+
 }
diff --git a/core/modules/config/src/Tests/ConfigInstallProfileUnmetDependenciesTest.php b/core/modules/config/src/Tests/ConfigInstallProfileUnmetDependenciesTest.php
index 6683580..23199e0 100644
--- a/core/modules/config/src/Tests/ConfigInstallProfileUnmetDependenciesTest.php
+++ b/core/modules/config/src/Tests/ConfigInstallProfileUnmetDependenciesTest.php
@@ -79,7 +79,6 @@ protected function setUpSite() {
     // This step is not reached due to the exception.
   }
 
-
   /**
    * Confirms that the installation succeeded.
    */
diff --git a/core/modules/config/tests/src/Functional/ConfigInstallProfileOverrideTest.php b/core/modules/config/tests/src/Functional/ConfigInstallProfileOverrideTest.php
index 1f5232c..187155f 100644
--- a/core/modules/config/tests/src/Functional/ConfigInstallProfileOverrideTest.php
+++ b/core/modules/config/tests/src/Functional/ConfigInstallProfileOverrideTest.php
@@ -24,7 +24,6 @@ class ConfigInstallProfileOverrideTest extends BrowserTestBase {
    */
   protected $profile = 'testing_config_overrides';
 
-
   /**
    * Tests install profile config changes.
    */
diff --git a/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.module b/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.module
index cef976c..3b49f0a 100644
--- a/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.module
+++ b/core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.module
@@ -27,7 +27,6 @@ function contact_storage_test_entity_base_field_info(EntityTypeInterface $entity
   }
 }
 
-
 /**
  * Implements hook_entity_type_alter().
  */
@@ -56,6 +55,7 @@ function contact_storage_test_form_contact_form_form_alter(&$form, FormStateInte
   ];
   $form['#entity_builders'][] = 'contact_storage_test_contact_form_form_builder';
 }
+
 /**
  * Entity builder for the contact form edit form with third party options.
  *
diff --git a/core/modules/content_moderation/src/EntityTypeInfo.php b/core/modules/content_moderation/src/EntityTypeInfo.php
index c03cf49..80ce9d5 100644
--- a/core/modules/content_moderation/src/EntityTypeInfo.php
+++ b/core/modules/content_moderation/src/EntityTypeInfo.php
@@ -119,7 +119,6 @@ public static function create(ContainerInterface $container) {
     );
   }
 
-
   /**
    * Adds Moderation configuration to appropriate entity types.
    *
diff --git a/core/modules/content_translation/content_translation.admin.inc b/core/modules/content_translation/content_translation.admin.inc
index f157749..3a27c00 100644
--- a/core/modules/content_translation/content_translation.admin.inc
+++ b/core/modules/content_translation/content_translation.admin.inc
@@ -160,6 +160,7 @@ function _content_translation_form_language_content_settings_form_alter(array &$
   $form['#validate'][] = 'content_translation_form_language_content_settings_validate';
   $form['#submit'][] = 'content_translation_form_language_content_settings_submit';
 }
+
 /**
  * Checks whether translatability should be configurable for a field.
  *
diff --git a/core/modules/editor/src/EditorXssFilter/Standard.php b/core/modules/editor/src/EditorXssFilter/Standard.php
index 363497f..754a014 100644
--- a/core/modules/editor/src/EditorXssFilter/Standard.php
+++ b/core/modules/editor/src/EditorXssFilter/Standard.php
@@ -116,7 +116,6 @@ protected static function filterXssDataAttributes($html) {
     return $html;
   }
 
-
   /**
    * Get all allowed tags from a restrictions data structure.
    *
diff --git a/core/modules/field/field.api.php b/core/modules/field/field.api.php
index 40b42e1..64e2893 100644
--- a/core/modules/field/field.api.php
+++ b/core/modules/field/field.api.php
@@ -43,7 +43,6 @@
  * @see plugin_api
  */
 
-
 /**
  * Perform alterations on Field API field types.
  *
diff --git a/core/modules/field/src/FieldUninstallValidator.php b/core/modules/field/src/FieldUninstallValidator.php
index 6ee521e..62daf45 100644
--- a/core/modules/field/src/FieldUninstallValidator.php
+++ b/core/modules/field/src/FieldUninstallValidator.php
@@ -85,7 +85,6 @@ protected function getFieldStoragesByModule($module) {
     return $this->fieldStorageConfigStorage->loadByProperties(['module' => $module, 'include_deleted' => TRUE]);
   }
 
-
   /**
    * Returns the label for a specified field type.
    *
diff --git a/core/modules/field/tests/modules/field_test/field_test.module b/core/modules/field/tests/modules/field_test/field_test.module
index 1d7e2d6..f0ba9ca 100644
--- a/core/modules/field/tests/modules/field_test/field_test.module
+++ b/core/modules/field/tests/modules/field_test/field_test.module
@@ -129,7 +129,6 @@ function field_test_field_widget_multivalue_test_field_widget_multiple_single_va
   _field_test_alter_widget("hook_field_widget_multivalue_WIDGET_TYPE_form_alter", $elements, $form_state, $context);
 }
 
-
 /**
  * Sets up alterations for widget alter tests.
  *
@@ -163,7 +162,6 @@ function field_test_query_efq_table_prefixing_test_alter(&$query) {
   $query->join('entity_test', 'et2', '%alias.id = entity_test.id');
 }
 
-
 /**
  * Implements hook_query_TAG_alter() for tag 'efq_metadata_test'.
  *
diff --git a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php
index 7ded590..cf53a74 100644
--- a/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php
+++ b/core/modules/field/tests/src/Functional/EntityReference/EntityReferenceFieldTranslatedReferenceViewTest.php
@@ -302,7 +302,6 @@ protected function createReferencedEntityWithTranslation() {
     return $node;
   }
 
-
   /**
    * Create the referenced entity.
    */
diff --git a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceFormatterTest.php b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceFormatterTest.php
index 1473375..dd9e7d4 100644
--- a/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceFormatterTest.php
+++ b/core/modules/field/tests/src/Kernel/EntityReference/EntityReferenceFormatterTest.php
@@ -332,7 +332,6 @@ public function testEntityReferenceRecursiveProtectionWithManyRenderedEntities()
     $this->assertEquals($expected_occurrences, $actual_occurrences);
   }
 
-
   /**
    * Tests the label formatter.
    */
diff --git a/core/modules/file/src/Plugin/migrate/source/d6/File.php b/core/modules/file/src/Plugin/migrate/source/d6/File.php
index 714dec9..9ec4887 100644
--- a/core/modules/file/src/Plugin/migrate/source/d6/File.php
+++ b/core/modules/file/src/Plugin/migrate/source/d6/File.php
@@ -88,6 +88,7 @@ public function fields() {
       'is_public' => $this->t('TRUE if the files directory is public otherwise FALSE.'),
     ];
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/file/src/Tests/DownloadTest.php b/core/modules/file/src/Tests/DownloadTest.php
index 8f85f09..2864ed2 100644
--- a/core/modules/file/src/Tests/DownloadTest.php
+++ b/core/modules/file/src/Tests/DownloadTest.php
@@ -8,6 +8,7 @@
  * @group file
  */
 class DownloadTest extends FileManagedTestBase {
+
   protected function setUp() {
     parent::setUp();
     // Clear out any hook calls.
diff --git a/core/modules/file/src/Tests/FileFieldPathTest.php b/core/modules/file/src/Tests/FileFieldPathTest.php
index 300b92c..bd3bcbf 100644
--- a/core/modules/file/src/Tests/FileFieldPathTest.php
+++ b/core/modules/file/src/Tests/FileFieldPathTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class FileFieldPathTest extends FileFieldTestBase {
+
   /**
    * Tests the normal formatter display on node display.
    */
diff --git a/core/modules/file/src/Tests/FileFieldRevisionTest.php b/core/modules/file/src/Tests/FileFieldRevisionTest.php
index 04fbcb8..4fd1d36 100644
--- a/core/modules/file/src/Tests/FileFieldRevisionTest.php
+++ b/core/modules/file/src/Tests/FileFieldRevisionTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class FileFieldRevisionTest extends FileFieldTestBase {
+
   /**
    * Tests creating multiple revisions of a node and managing attached files.
    *
diff --git a/core/modules/file/src/Tests/FileManagedFileElementTest.php b/core/modules/file/src/Tests/FileManagedFileElementTest.php
index f48532e..de9b461 100644
--- a/core/modules/file/src/Tests/FileManagedFileElementTest.php
+++ b/core/modules/file/src/Tests/FileManagedFileElementTest.php
@@ -10,6 +10,7 @@
  *   that aren't related to fields into it.
  */
 class FileManagedFileElementTest extends FileFieldTestBase {
+
   /**
    * Tests the managed_file element type.
    */
diff --git a/core/modules/file/src/Tests/FileTokenReplaceTest.php b/core/modules/file/src/Tests/FileTokenReplaceTest.php
index 5bfa07b..e7c7815 100644
--- a/core/modules/file/src/Tests/FileTokenReplaceTest.php
+++ b/core/modules/file/src/Tests/FileTokenReplaceTest.php
@@ -13,6 +13,7 @@
  * @group file
  */
 class FileTokenReplaceTest extends FileFieldTestBase {
+
   /**
    * Creates a file, then tests the tokens generated from it.
    */
diff --git a/core/modules/file/tests/src/Kernel/CopyTest.php b/core/modules/file/tests/src/Kernel/CopyTest.php
index 3193cb6..0df63c8 100644
--- a/core/modules/file/tests/src/Kernel/CopyTest.php
+++ b/core/modules/file/tests/src/Kernel/CopyTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class CopyTest extends FileManagedUnitTestBase {
+
   /**
    * Test file copying in the normal, base case.
    */
diff --git a/core/modules/file/tests/src/Kernel/DeleteTest.php b/core/modules/file/tests/src/Kernel/DeleteTest.php
index de5a5bc..9ab4c51 100644
--- a/core/modules/file/tests/src/Kernel/DeleteTest.php
+++ b/core/modules/file/tests/src/Kernel/DeleteTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class DeleteTest extends FileManagedUnitTestBase {
+
   /**
    * Tries deleting a normal file (as opposed to a directory, symlink, etc).
    */
diff --git a/core/modules/file/tests/src/Kernel/LoadTest.php b/core/modules/file/tests/src/Kernel/LoadTest.php
index 9d71539..413086a 100644
--- a/core/modules/file/tests/src/Kernel/LoadTest.php
+++ b/core/modules/file/tests/src/Kernel/LoadTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class LoadTest extends FileManagedUnitTestBase {
+
   /**
    * Try to load a non-existent file by fid.
    */
diff --git a/core/modules/file/tests/src/Kernel/MoveTest.php b/core/modules/file/tests/src/Kernel/MoveTest.php
index 3183ecf..72f6801 100644
--- a/core/modules/file/tests/src/Kernel/MoveTest.php
+++ b/core/modules/file/tests/src/Kernel/MoveTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class MoveTest extends FileManagedUnitTestBase {
+
   /**
    * Move a normal file.
    */
diff --git a/core/modules/file/tests/src/Kernel/SaveDataTest.php b/core/modules/file/tests/src/Kernel/SaveDataTest.php
index 747c7b1..8d03e36 100644
--- a/core/modules/file/tests/src/Kernel/SaveDataTest.php
+++ b/core/modules/file/tests/src/Kernel/SaveDataTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class SaveDataTest extends FileManagedUnitTestBase {
+
   /**
    * Test the file_save_data() function when no filename is provided.
    */
diff --git a/core/modules/file/tests/src/Kernel/SaveTest.php b/core/modules/file/tests/src/Kernel/SaveTest.php
index 193c568..73e8b25 100644
--- a/core/modules/file/tests/src/Kernel/SaveTest.php
+++ b/core/modules/file/tests/src/Kernel/SaveTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class SaveTest extends FileManagedUnitTestBase {
+
   public function testFileSave() {
     // Create a new file entity.
     $file = File::create([
diff --git a/core/modules/file/tests/src/Kernel/SpaceUsedTest.php b/core/modules/file/tests/src/Kernel/SpaceUsedTest.php
index 650a289..fd5c90c 100644
--- a/core/modules/file/tests/src/Kernel/SpaceUsedTest.php
+++ b/core/modules/file/tests/src/Kernel/SpaceUsedTest.php
@@ -10,6 +10,7 @@
  * @group file
  */
 class SpaceUsedTest extends FileManagedUnitTestBase {
+
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/file/tests/src/Kernel/UsageTest.php b/core/modules/file/tests/src/Kernel/UsageTest.php
index f95e9cd..854360e 100644
--- a/core/modules/file/tests/src/Kernel/UsageTest.php
+++ b/core/modules/file/tests/src/Kernel/UsageTest.php
@@ -15,6 +15,7 @@
  * @group file
  */
 class UsageTest extends FileManagedUnitTestBase {
+
   /**
    * Tests \Drupal\file\FileUsage\DatabaseFileUsageBackend::listUsage().
    */
diff --git a/core/modules/file/tests/src/Kernel/ValidateTest.php b/core/modules/file/tests/src/Kernel/ValidateTest.php
index 0f348d6..3e9eb07 100644
--- a/core/modules/file/tests/src/Kernel/ValidateTest.php
+++ b/core/modules/file/tests/src/Kernel/ValidateTest.php
@@ -8,6 +8,7 @@
  * @group file
  */
 class ValidateTest extends FileManagedUnitTestBase {
+
   /**
    * Test that the validators passed into are checked.
    */
diff --git a/core/modules/file/tests/src/Kernel/ValidatorTest.php b/core/modules/file/tests/src/Kernel/ValidatorTest.php
index b645f39..ab0d852 100644
--- a/core/modules/file/tests/src/Kernel/ValidatorTest.php
+++ b/core/modules/file/tests/src/Kernel/ValidatorTest.php
@@ -137,7 +137,6 @@ public function testFileValidateNameLength() {
     $this->assertEqual(count($errors), 1, 'An error reported for 0 length filename.', 'File');
   }
 
-
   /**
    * Test file_validate_size().
    */
diff --git a/core/modules/filter/tests/src/Kernel/FilterKernelTest.php b/core/modules/filter/tests/src/Kernel/FilterKernelTest.php
index 7b0c029..1838cfe 100644
--- a/core/modules/filter/tests/src/Kernel/FilterKernelTest.php
+++ b/core/modules/filter/tests/src/Kernel/FilterKernelTest.php
@@ -388,7 +388,6 @@ public function testLineBreakFilter() {
     }
   }
 
-
   /**
    * Tests filter settings, defaults, access restrictions and similar.
    *
diff --git a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php b/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
index 19c0000..4114db5 100644
--- a/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
+++ b/core/modules/forum/tests/src/Functional/Views/ForumIntegrationTest.php
@@ -34,7 +34,6 @@ protected function setUp($import_test_views = TRUE) {
     ViewTestData::createTestViews(get_class($this), ['forum_test_views']);
   }
 
-
   /**
    * Tests the integration.
    */
diff --git a/core/modules/hal/hal.api.php b/core/modules/hal/hal.api.php
index 197785c..648de01 100644
--- a/core/modules/hal/hal.api.php
+++ b/core/modules/hal/hal.api.php
@@ -33,7 +33,6 @@ function hook_hal_type_uri_alter(&$uri, $context = []) {
   }
 }
 
-
 /**
  * Alter the HAL relation URI.
  *
diff --git a/core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php b/core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php
index 1a4ef54..de9fdc7 100644
--- a/core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php
+++ b/core/modules/hal/src/Normalizer/EntityReferenceItemNormalizer.php
@@ -169,7 +169,6 @@ protected function normalizedFieldValues(FieldItemInterface $field_item, $format
     return $normalized;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php b/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php
index 355c09d..edcf3dc 100644
--- a/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php
+++ b/core/modules/hal/tests/src/Kernel/FileNormalizeTest.php
@@ -26,7 +26,6 @@ protected function setUp() {
     $this->installEntitySchema('file');
   }
 
-
   /**
    * Tests the normalize function.
    */
diff --git a/core/modules/help/src/HelpSectionPluginInterface.php b/core/modules/help/src/HelpSectionPluginInterface.php
index 8a725f9..cf377c4 100644
--- a/core/modules/help/src/HelpSectionPluginInterface.php
+++ b/core/modules/help/src/HelpSectionPluginInterface.php
@@ -17,7 +17,6 @@
  */
 interface HelpSectionPluginInterface extends PluginInspectionInterface, CacheableDependencyInterface {
 
-
   /**
    * Returns the title of the help section.
    *
diff --git a/core/modules/help/tests/modules/help_page_test/src/Plugin/HelpSection/EmptyHelpSection.php b/core/modules/help/tests/modules/help_page_test/src/Plugin/HelpSection/EmptyHelpSection.php
index 6fa2ffd..db39028 100644
--- a/core/modules/help/tests/modules/help_page_test/src/Plugin/HelpSection/EmptyHelpSection.php
+++ b/core/modules/help/tests/modules/help_page_test/src/Plugin/HelpSection/EmptyHelpSection.php
@@ -14,6 +14,7 @@
  * )
  */
 class EmptyHelpSection extends HelpSectionPluginBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/image/src/Form/ImageStyleDeleteForm.php b/core/modules/image/src/Form/ImageStyleDeleteForm.php
index f49d6b8..a0aea33 100644
--- a/core/modules/image/src/Form/ImageStyleDeleteForm.php
+++ b/core/modules/image/src/Form/ImageStyleDeleteForm.php
@@ -25,6 +25,7 @@ class ImageStyleDeleteForm extends EntityDeleteForm {
   public function getQuestion() {
     return $this->t('Optionally select a style before deleting %style', ['%style' => $this->entity->label()]);
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/image/src/ImageStyleInterface.php b/core/modules/image/src/ImageStyleInterface.php
index 7dec361..8430fdc 100644
--- a/core/modules/image/src/ImageStyleInterface.php
+++ b/core/modules/image/src/ImageStyleInterface.php
@@ -42,7 +42,6 @@ public function getName();
    */
   public function setName($name);
 
-
   /**
    * Returns the URI of this image when using this style.
    *
diff --git a/core/modules/language/src/Form/NegotiationBrowserDeleteForm.php b/core/modules/language/src/Form/NegotiationBrowserDeleteForm.php
index 629fd08..ccbe87f 100644
--- a/core/modules/language/src/Form/NegotiationBrowserDeleteForm.php
+++ b/core/modules/language/src/Form/NegotiationBrowserDeleteForm.php
@@ -29,7 +29,6 @@ protected function getEditableConfigNames() {
     return ['language.mappings'];
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/language/src/HttpKernel/PathProcessorLanguage.php b/core/modules/language/src/HttpKernel/PathProcessorLanguage.php
index 8bb4f83..9feae27 100644
--- a/core/modules/language/src/HttpKernel/PathProcessorLanguage.php
+++ b/core/modules/language/src/HttpKernel/PathProcessorLanguage.php
@@ -60,7 +60,6 @@ class PathProcessorLanguage implements InboundPathProcessorInterface, OutboundPa
    */
   protected $configSubscriber;
 
-
   /**
    * Constructs a PathProcessorLanguage object.
    *
diff --git a/core/modules/language/src/Plugin/Block/LanguageBlock.php b/core/modules/language/src/Plugin/Block/LanguageBlock.php
index 8e7ee91..be8571b 100644
--- a/core/modules/language/src/Plugin/Block/LanguageBlock.php
+++ b/core/modules/language/src/Plugin/Block/LanguageBlock.php
@@ -57,7 +57,6 @@ public function __construct(array $configuration, $plugin_id, $plugin_definition
     $this->pathMatcher = $path_matcher;
   }
 
-
   /**
    * {@inheritdoc}
    */
@@ -71,7 +70,6 @@ public static function create(ContainerInterface $container, array $configuratio
     );
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php
index d7a4551..fdba370 100644
--- a/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php
+++ b/core/modules/language/tests/src/Kernel/Migrate/d7/MigrateLanguageContentSettingsTest.php
@@ -17,6 +17,7 @@ class MigrateLanguageContentSettingsTest extends MigrateDrupal7TestBase {
    * {@inheritdoc}
    */
   public static $modules = ['node', 'text', 'language', 'content_translation', 'menu_ui'];
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php b/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
index 825ca7d..9812289 100644
--- a/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
+++ b/core/modules/language/tests/src/Unit/LanguageNegotiationUrlTest.php
@@ -256,7 +256,9 @@ public function providerTestDomain() {
 namespace Drupal\language\Plugin\LanguageNegotiation;
 
 if (!function_exists('base_path')) {
+
   function base_path() {
     return '/';
   }
+
 }
diff --git a/core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php b/core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php
index 56f6521..94fa6c3 100644
--- a/core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php
+++ b/core/modules/link/src/Plugin/Field/FieldWidget/LinkWidget.php
@@ -377,7 +377,6 @@ public function massageFormValues(array $values, array $form, FormStateInterface
     return $values;
   }
 
-
   /**
    * {@inheritdoc}
    *
diff --git a/core/modules/link/tests/src/Functional/LinkFieldTest.php b/core/modules/link/tests/src/Functional/LinkFieldTest.php
index f32bf3c..ae2b24a 100644
--- a/core/modules/link/tests/src/Functional/LinkFieldTest.php
+++ b/core/modules/link/tests/src/Functional/LinkFieldTest.php
@@ -654,7 +654,6 @@ public function testLinkTypeOnLinkWidget() {
     $this->assertEqual($form[$field_name]['widget'][0]['uri']['#link_type'], $link_type);
   }
 
-
   /**
    * Tests editing a link to a non-node entity.
    */
diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module
index 9e42448..c9f75ac 100644
--- a/core/modules/locale/locale.module
+++ b/core/modules/locale/locale.module
@@ -308,7 +308,6 @@ function locale_get_plural($count, $langcode = NULL) {
   return $plural_indexes[$langcode][$count];
 }
 
-
 /**
  * Implements hook_modules_installed().
  */
@@ -1373,6 +1372,7 @@ function _locale_rebuild_js($langcode = NULL) {
       return TRUE;
   }
 }
+
 /**
  * Form element callback: After build changes to the language update table.
  *
diff --git a/core/modules/locale/src/Form/ImportForm.php b/core/modules/locale/src/Form/ImportForm.php
index a9f15f0..5dd38ea 100644
--- a/core/modules/locale/src/Form/ImportForm.php
+++ b/core/modules/locale/src/Form/ImportForm.php
@@ -46,6 +46,7 @@ public static function create(ContainerInterface $container) {
       $container->get('language_manager')
     );
   }
+
   /**
    * Constructs a form for language import.
    *
diff --git a/core/modules/locale/src/SourceString.php b/core/modules/locale/src/SourceString.php
index a1af509..dd59954 100644
--- a/core/modules/locale/src/SourceString.php
+++ b/core/modules/locale/src/SourceString.php
@@ -10,6 +10,7 @@
  * value, and is assumed to be in English language.
  */
 class SourceString extends StringBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php b/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php
index 3a12efd..0368350 100644
--- a/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php
+++ b/core/modules/locale/tests/src/Kernel/LocaleConfigSubscriberTest.php
@@ -187,7 +187,6 @@ protected function setUpNoTranslation($config_name, $key, $source, $langcode) {
     $this->assertNoTranslation($config_name, $langcode);
   }
 
-
   /**
    * Sets up a configuration string with a translation.
    *
diff --git a/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php b/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php
index 370c014..8b9b797 100644
--- a/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php
+++ b/core/modules/locale/tests/src/Kernel/LocaleTranslationProjectsTest.php
@@ -41,7 +41,6 @@ protected function setUp() {
     \Drupal::state()->set('locale.remove_core_project', TRUE);
   }
 
-
   /**
    * Tests locale_translation_clear_cache_projects().
    */
diff --git a/core/modules/locale/tests/src/Unit/StringBaseTest.php b/core/modules/locale/tests/src/Unit/StringBaseTest.php
index 96bb41b..7436c70 100644
--- a/core/modules/locale/tests/src/Unit/StringBaseTest.php
+++ b/core/modules/locale/tests/src/Unit/StringBaseTest.php
@@ -21,7 +21,6 @@ public function testSaveWithoutStorage() {
     $string->save();
   }
 
-
   /**
    * @covers ::delete
    */
diff --git a/core/modules/media/src/Plugin/media/Source/File.php b/core/modules/media/src/Plugin/media/Source/File.php
index 0f7631e..4806677 100644
--- a/core/modules/media/src/Plugin/media/Source/File.php
+++ b/core/modules/media/src/Plugin/media/Source/File.php
@@ -36,7 +36,6 @@ class File extends MediaSourceBase {
    */
   const METADATA_ATTRIBUTE_SIZE = 'filesize';
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/menu_link_content/src/Entity/MenuLinkContent.php b/core/modules/menu_link_content/src/Entity/MenuLinkContent.php
index 460c0df..17ece4e 100644
--- a/core/modules/menu_link_content/src/Entity/MenuLinkContent.php
+++ b/core/modules/menu_link_content/src/Entity/MenuLinkContent.php
@@ -186,6 +186,7 @@ public function preSave(EntityStorageInterface $storage) {
       $this->setRequiresRediscovery(FALSE);
     }
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php b/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php
index 046deb4..6a7cf4a 100644
--- a/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php
+++ b/core/modules/menu_link_content/tests/src/Kernel/PathAliasMenuLinkContentTest.php
@@ -44,7 +44,6 @@ public function register(ContainerBuilder $container) {
       ->addTag('path_processor_inbound', ['priority' => 100]);
   }
 
-
   /**
    * Tests the path aliasing changing.
    */
diff --git a/core/modules/menu_ui/menu_ui.module b/core/modules/menu_ui/menu_ui.module
index cb1e853..ab08437 100644
--- a/core/modules/menu_ui/menu_ui.module
+++ b/core/modules/menu_ui/menu_ui.module
@@ -496,7 +496,6 @@ function menu_ui_preprocess_block(&$variables) {
   }
 }
 
-
 /**
  * Implements hook_system_breadcrumb_alter().
  */
diff --git a/core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php b/core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
index 180be0a..a1f9737 100644
--- a/core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
+++ b/core/modules/migrate/src/Plugin/Discovery/AnnotatedClassDiscoveryAutomatedProviders.php
@@ -48,7 +48,6 @@ public function __construct($subdir, \Traversable $root_namespaces, $plugin_defi
     $this->finder = new ClassFinder();
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php b/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php
index 31322a5..5d32ee1 100644
--- a/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php
+++ b/core/modules/migrate/src/Plugin/MigrateIdMapInterface.php
@@ -103,7 +103,6 @@ public function processedCount();
    */
   public function importedCount();
 
-
   /**
    * Returns a count of items which are marked as needing update.
    *
diff --git a/core/modules/migrate/src/Plugin/Migration.php b/core/modules/migrate/src/Plugin/Migration.php
index cc8d804..870998e 100644
--- a/core/modules/migrate/src/Plugin/Migration.php
+++ b/core/modules/migrate/src/Plugin/Migration.php
@@ -554,7 +554,6 @@ public function set($property_name, $value) {
     return $this;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/migrate/src/Plugin/MigrationPluginManager.php b/core/modules/migrate/src/Plugin/MigrationPluginManager.php
index 74f1519..d06341f 100644
--- a/core/modules/migrate/src/Plugin/MigrationPluginManager.php
+++ b/core/modules/migrate/src/Plugin/MigrationPluginManager.php
@@ -160,7 +160,6 @@ protected function expandPluginIds(array $migration_ids) {
     return $plugin_ids;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php b/core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php
index 8a6fe9a..7c33191 100644
--- a/core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php
+++ b/core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php
@@ -176,7 +176,6 @@ public function testSave() {
     $this->assertEquals([1234], $destination->save($entity->reveal(), []));
   }
 
-
   /**
    * Helper method to create an entity revision destination with mock services.
    *
diff --git a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
index f450984..5c4a856 100644
--- a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
+++ b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityDisplayTest.php
@@ -53,13 +53,16 @@ public function testImport() {
 class TestPerComponentEntityDisplay extends ComponentEntityDisplayBase {
   const MODE_NAME = 'view_mode';
   protected $testValues;
+
   public function __construct($entity) {
     $this->entity = $entity;
   }
+
   protected function getEntity($entity_type, $bundle, $view_mode) {
     $this->testValues = func_get_args();
     return $this->entity;
   }
+
   public function getTestValues() {
     return $this->testValues;
   }
diff --git a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
index 157d45e..218d9a6 100644
--- a/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
+++ b/core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
@@ -53,13 +53,16 @@ public function testImport() {
 class TestPerComponentEntityFormDisplay extends PerComponentEntityFormDisplay {
   const MODE_NAME = 'form_mode';
   protected $testValues;
+
   public function __construct($entity) {
     $this->entity = $entity;
   }
+
   protected function getEntity($entity_type, $bundle, $form_mode) {
     $this->testValues = func_get_args();
     return $this->entity;
   }
+
   public function getTestValues() {
     return $this->testValues;
   }
diff --git a/core/modules/migrate/tests/src/Unit/process/ConcatTest.php b/core/modules/migrate/tests/src/Unit/process/ConcatTest.php
index e7873fe..8acbc11 100644
--- a/core/modules/migrate/tests/src/Unit/process/ConcatTest.php
+++ b/core/modules/migrate/tests/src/Unit/process/ConcatTest.php
@@ -53,6 +53,7 @@ public function testConcatWithDelimiter() {
 }
 
 class TestConcat extends Concat {
+
   public function __construct() {
   }
 
diff --git a/core/modules/migrate/tests/src/Unit/process/GetTest.php b/core/modules/migrate/tests/src/Unit/process/GetTest.php
index 5bc6247..67f56b0 100644
--- a/core/modules/migrate/tests/src/Unit/process/GetTest.php
+++ b/core/modules/migrate/tests/src/Unit/process/GetTest.php
@@ -114,8 +114,10 @@ public function testIntegerValues() {
 namespace Drupal\migrate\Plugin\migrate\process;
 
 class TestGet extends Get {
+
   public function __construct() {
   }
+
   public function setSource($source) {
     $this->configuration['source'] = $source;
   }
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index 208deb5..ec7461a 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -1034,7 +1034,6 @@ function node_access_view_all_nodes($account = NULL) {
   return $access[$account->id()];
 }
 
-
 /**
  * Implements hook_query_TAG_alter().
  *
diff --git a/core/modules/node/src/Entity/Node.php b/core/modules/node/src/Entity/Node.php
index ccee95b..827c459 100644
--- a/core/modules/node/src/Entity/Node.php
+++ b/core/modules/node/src/Entity/Node.php
@@ -212,7 +212,6 @@ public function getCreatedTime() {
     return $this->get('created')->value;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/node/src/NodeAccessControlHandler.php b/core/modules/node/src/NodeAccessControlHandler.php
index a8a0bc6..5ccc642 100644
--- a/core/modules/node/src/NodeAccessControlHandler.php
+++ b/core/modules/node/src/NodeAccessControlHandler.php
@@ -50,7 +50,6 @@ public static function createInstance(ContainerInterface $container, EntityTypeI
     );
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/node/src/Plugin/views/filter/Access.php b/core/modules/node/src/Plugin/views/filter/Access.php
index 71e8e95..38f1637 100644
--- a/core/modules/node/src/Plugin/views/filter/Access.php
+++ b/core/modules/node/src/Plugin/views/filter/Access.php
@@ -16,7 +16,9 @@
 class Access extends FilterPluginBase {
 
   public function adminSummary() {}
+
   protected function operatorForm(&$form, FormStateInterface $form_state) {}
+
   public function canExpose() {
     return FALSE;
   }
diff --git a/core/modules/node/tests/src/Functional/PageViewTest.php b/core/modules/node/tests/src/Functional/PageViewTest.php
index 9f7e414..1f796d8 100644
--- a/core/modules/node/tests/src/Functional/PageViewTest.php
+++ b/core/modules/node/tests/src/Functional/PageViewTest.php
@@ -10,6 +10,7 @@
  * @group node
  */
 class PageViewTest extends NodeTestBase {
+
   /**
    * Tests an anonymous and unpermissioned user attempting to edit the node.
    */
diff --git a/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php b/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php
index 0a0f145..420b306 100644
--- a/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php
+++ b/core/modules/node/tests/src/Kernel/NodeListBuilderTest.php
@@ -23,7 +23,6 @@ protected function setUp() {
     $this->installEntitySchema('node');
   }
 
-
   /**
    * Tests that the correct cache contexts are set.
    */
diff --git a/core/modules/options/tests/src/Functional/OptionsDynamicValuesValidationTest.php b/core/modules/options/tests/src/Functional/OptionsDynamicValuesValidationTest.php
index 9205011..7ef535c 100644
--- a/core/modules/options/tests/src/Functional/OptionsDynamicValuesValidationTest.php
+++ b/core/modules/options/tests/src/Functional/OptionsDynamicValuesValidationTest.php
@@ -8,6 +8,7 @@
  * @group options
  */
 class OptionsDynamicValuesValidationTest extends OptionsDynamicValuesTestBase {
+
   /**
    * Test that allowed values function gets the entity.
    */
diff --git a/core/modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php b/core/modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php
index b661c0d..e941265 100644
--- a/core/modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php
+++ b/core/modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php
@@ -8,6 +8,7 @@
  * @group options
  */
 class OptionsSelectDynamicValuesTest extends OptionsDynamicValuesTestBase {
+
   /**
    * Tests the 'options_select' widget (single select).
    */
diff --git a/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php b/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php
index a2157f1..a6cee04 100644
--- a/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php
+++ b/core/modules/options/tests/src/Functional/OptionsWidgetsTest.php
@@ -35,7 +35,6 @@ class OptionsWidgetsTest extends FieldTestBase {
    */
   protected $card2;
 
-
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/rdf/rdf.module b/core/modules/rdf/rdf.module
index 8d43298..dbffb20 100644
--- a/core/modules/rdf/rdf.module
+++ b/core/modules/rdf/rdf.module
@@ -38,6 +38,7 @@ function rdf_help($route_name, RouteMatchInterface $route_match) {
  * into variables available to theme functions and templates. All Drupal core
  * themes are coded to be RDFa compatible.
  */
+
 /**
  * Returns the RDF mapping object associated with a bundle.
  *
@@ -293,7 +294,6 @@ function _rdf_set_field_rel_attribute(&$variables) {
   }
 }
 
-
 /**
  * Implements hook_preprocess_HOOK() for node templates.
  */
diff --git a/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php b/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php
index 39f4831..4023ef2 100644
--- a/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php
+++ b/core/modules/rdf/tests/src/Kernel/RdfaAttributesTest.php
@@ -73,7 +73,6 @@ public function testDatatypeCallback() {
     $this->_testAttributes($expected_attributes, $mapping, $date);
   }
 
-
   /**
    * Test attribute creation for mappings which use data converters.
    */
diff --git a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php
index b50d71b..8160ec5 100644
--- a/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php
+++ b/core/modules/responsive_image/src/Tests/ResponsiveImageFieldDisplayTest.php
@@ -152,6 +152,7 @@ protected function addTestImageStyleMappings($empty_styles = FALSE) {
         ->save();
     }
   }
+
   /**
    * Test responsive image formatters on node display.
    *
diff --git a/core/modules/rest/rest.api.php b/core/modules/rest/rest.api.php
index 6c09bbf..0890e3b 100644
--- a/core/modules/rest/rest.api.php
+++ b/core/modules/rest/rest.api.php
@@ -56,7 +56,6 @@ function hook_rest_type_uri_alter(&$uri, $context = []) {
   }
 }
 
-
 /**
  * Alter the REST relation URI.
  *
diff --git a/core/modules/rest/src/Plugin/views/display/RestExport.php b/core/modules/rest/src/Plugin/views/display/RestExport.php
index 52daee0..93605b8 100644
--- a/core/modules/rest/src/Plugin/views/display/RestExport.php
+++ b/core/modules/rest/src/Plugin/views/display/RestExport.php
@@ -166,6 +166,7 @@ public static function create(ContainerInterface $container, array $configuratio
       $container->getParameter('serializer.format_providers')
     );
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php b/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php
index 5766817..faebb2f 100644
--- a/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php
+++ b/core/modules/rest/tests/src/Functional/EntityResource/BlockContent/BlockContentResourceTestBase.php
@@ -161,7 +161,6 @@ protected function getNormalizedPostEntity() {
     ];
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/rest/tests/src/Functional/EntityResource/XmlEntityNormalizationQuirksTrait.php b/core/modules/rest/tests/src/Functional/EntityResource/XmlEntityNormalizationQuirksTrait.php
index b69394b..3064ea3 100644
--- a/core/modules/rest/tests/src/Functional/EntityResource/XmlEntityNormalizationQuirksTrait.php
+++ b/core/modules/rest/tests/src/Functional/EntityResource/XmlEntityNormalizationQuirksTrait.php
@@ -107,7 +107,6 @@ protected function applyXmlFieldDecodingQuirks(array $normalization) {
     return $normalization;
   }
 
-
   /**
    * Applies the XML config entity encoding quirks that remain after decoding.
    *
diff --git a/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php b/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php
index de75f3e..a791838 100644
--- a/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php
+++ b/core/modules/rest/tests/src/Kernel/RequestHandlerTest.php
@@ -97,8 +97,11 @@ public function testHandle() {
 class StubRequestHandlerResourcePlugin extends ResourceBase {
 
   public function get($example, Request $request) {}
+
   public function post() {}
+
   public function patch($example_original, Request $request) {}
+
   public function delete() {}
 
 }
diff --git a/core/modules/search/tests/src/Functional/SearchExactTest.php b/core/modules/search/tests/src/Functional/SearchExactTest.php
index 0416391..fc9cec2 100644
--- a/core/modules/search/tests/src/Functional/SearchExactTest.php
+++ b/core/modules/search/tests/src/Functional/SearchExactTest.php
@@ -8,6 +8,7 @@
  * @group search
  */
 class SearchExactTest extends SearchTestBase {
+
   /**
    * Tests that the correct number of pager links are found for both keywords and phrases.
    */
diff --git a/core/modules/search/tests/src/Functional/SearchSimplifyTest.php b/core/modules/search/tests/src/Functional/SearchSimplifyTest.php
index c306119..7799f1f 100644
--- a/core/modules/search/tests/src/Functional/SearchSimplifyTest.php
+++ b/core/modules/search/tests/src/Functional/SearchSimplifyTest.php
@@ -10,6 +10,7 @@
  * @group search
  */
 class SearchSimplifyTest extends SearchTestBase {
+
   /**
    * Tests that all Unicode characters simplify correctly.
    */
diff --git a/core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php b/core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
index 69dffd8..5321a51 100644
--- a/core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
+++ b/core/modules/search/tests/src/Unit/SearchPageRepositoryTest.php
@@ -273,11 +273,13 @@ public function testSortSearchPages() {
 }
 
 class TestSearchPage extends SearchPage {
+
   public function __construct(array $values) {
     foreach ($values as $key => $value) {
       $this->$key = $value;
     }
   }
+
   public function label($langcode = NULL) {
     return $this->label;
   }
diff --git a/core/modules/serialization/tests/src/Unit/Encoder/XmlEncoderTest.php b/core/modules/serialization/tests/src/Unit/Encoder/XmlEncoderTest.php
index a347982..cbff14a 100644
--- a/core/modules/serialization/tests/src/Unit/Encoder/XmlEncoderTest.php
+++ b/core/modules/serialization/tests/src/Unit/Encoder/XmlEncoderTest.php
@@ -97,6 +97,7 @@ public function testDefaultEncoderHasSerializer() {
 }
 
 class TestObject {
+
   public function getA() {
     return 'A';
   }
diff --git a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php
index cc87d28..df6f2b6 100644
--- a/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php
+++ b/core/modules/settings_tray/tests/src/FunctionalJavascript/SettingsTrayBlockFormTest.php
@@ -765,6 +765,7 @@ public function testOverriddenConfigurationRemoved() {
     $this->assertEquals($menu_without_overrides, \Drupal::configFactory()->getEditable('system.menu.main')->get());
     $web_assert->pageTextContains('This is on the menu');
   }
+
   /**
    * Asserts that an overridden block has Settings Tray disabled.
    *
diff --git a/core/modules/simpletest/simpletest.api.php b/core/modules/simpletest/simpletest.api.php
index d1b5f44..3a31eb2 100644
--- a/core/modules/simpletest/simpletest.api.php
+++ b/core/modules/simpletest/simpletest.api.php
@@ -55,7 +55,6 @@ function hook_test_group_finished() {
 function hook_test_finished($results) {
 }
 
-
 /**
  * @} End of "addtogroup hooks".
  */
diff --git a/core/modules/simpletest/src/KernelTestBase.php b/core/modules/simpletest/src/KernelTestBase.php
index e703605..07201c4 100644
--- a/core/modules/simpletest/src/KernelTestBase.php
+++ b/core/modules/simpletest/src/KernelTestBase.php
@@ -478,7 +478,6 @@ protected function installSchema($module, $tables) {
     ]));
   }
 
-
   /**
    * Installs the storage schema for a specific entity type.
    *
diff --git a/core/modules/simpletest/tests/src/Functional/MailCaptureTest.php b/core/modules/simpletest/tests/src/Functional/MailCaptureTest.php
index f610eaf..8cb0904 100644
--- a/core/modules/simpletest/tests/src/Functional/MailCaptureTest.php
+++ b/core/modules/simpletest/tests/src/Functional/MailCaptureTest.php
@@ -15,6 +15,7 @@ class MailCaptureTest extends BrowserTestBase {
   use AssertMailTrait {
     getMails as drupalGetMails;
   }
+
   /**
    * Test to see if the wrapper function is executed correctly.
    */
diff --git a/core/modules/statistics/src/StatisticsViewsResult.php b/core/modules/statistics/src/StatisticsViewsResult.php
index ef0db97..f3253e5 100644
--- a/core/modules/statistics/src/StatisticsViewsResult.php
+++ b/core/modules/statistics/src/StatisticsViewsResult.php
@@ -37,7 +37,6 @@ public function getTotalCount() {
     return $this->totalCount;
   }
 
-
   /**
    * Total number of times the entity has been viewed "today".
    *
@@ -47,7 +46,6 @@ public function getDayCount() {
     return $this->dayCount;
   }
 
-
   /**
    * Timestamp of when the entity was last viewed.
    *
diff --git a/core/modules/statistics/tests/src/Functional/StatisticsTokenReplaceTest.php b/core/modules/statistics/tests/src/Functional/StatisticsTokenReplaceTest.php
index 8402d22..50616af 100644
--- a/core/modules/statistics/tests/src/Functional/StatisticsTokenReplaceTest.php
+++ b/core/modules/statistics/tests/src/Functional/StatisticsTokenReplaceTest.php
@@ -9,6 +9,7 @@
  * @group statistics
  */
 class StatisticsTokenReplaceTest extends StatisticsTestBase {
+
   /**
    * Creates a node, then tests the statistics tokens generated from it.
    */
diff --git a/core/modules/system/src/CronController.php b/core/modules/system/src/CronController.php
index ec11569..3019472 100644
--- a/core/modules/system/src/CronController.php
+++ b/core/modules/system/src/CronController.php
@@ -36,7 +36,6 @@ public static function create(ContainerInterface $container) {
     return new static($container->get('cron'));
   }
 
-
   /**
    * Run Cron once.
    *
diff --git a/core/modules/system/src/Form/SiteMaintenanceModeForm.php b/core/modules/system/src/Form/SiteMaintenanceModeForm.php
index 58b1f1a..dae500d 100644
--- a/core/modules/system/src/Form/SiteMaintenanceModeForm.php
+++ b/core/modules/system/src/Form/SiteMaintenanceModeForm.php
@@ -56,6 +56,7 @@ public static function create(ContainerInterface $container) {
       $container->get('user.permissions')
     );
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php b/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php
index 3dc8881..7d11bee 100644
--- a/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php
+++ b/core/modules/system/src/Plugin/migrate/process/d6/TimeZone.php
@@ -14,6 +14,7 @@
  * )
  */
 class TimeZone extends ProcessPluginBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/src/Tests/Ajax/AjaxInGroupTest.php b/core/modules/system/src/Tests/Ajax/AjaxInGroupTest.php
index 4116f5f..39af58b 100644
--- a/core/modules/system/src/Tests/Ajax/AjaxInGroupTest.php
+++ b/core/modules/system/src/Tests/Ajax/AjaxInGroupTest.php
@@ -8,6 +8,7 @@
  * @group Ajax
  */
 class AjaxInGroupTest extends AjaxTestBase {
+
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/system/src/Tests/Ajax/CommandsTest.php b/core/modules/system/src/Tests/Ajax/CommandsTest.php
index 6ae97ae..b91ac98 100644
--- a/core/modules/system/src/Tests/Ajax/CommandsTest.php
+++ b/core/modules/system/src/Tests/Ajax/CommandsTest.php
@@ -29,6 +29,7 @@
  * @group Ajax
  */
 class CommandsTest extends AjaxTestBase {
+
   /**
    * Tests the various Ajax Commands.
    */
diff --git a/core/modules/system/src/Tests/Ajax/ElementValidationTest.php b/core/modules/system/src/Tests/Ajax/ElementValidationTest.php
index d20f453..169a389 100644
--- a/core/modules/system/src/Tests/Ajax/ElementValidationTest.php
+++ b/core/modules/system/src/Tests/Ajax/ElementValidationTest.php
@@ -8,6 +8,7 @@
  * @group Ajax
  */
 class ElementValidationTest extends AjaxTestBase {
+
   /**
    * Tries to post an Ajax change to a form that has a validated element.
    *
diff --git a/core/modules/system/src/Tests/Ajax/FormValuesTest.php b/core/modules/system/src/Tests/Ajax/FormValuesTest.php
index 9f4b521..358db89 100644
--- a/core/modules/system/src/Tests/Ajax/FormValuesTest.php
+++ b/core/modules/system/src/Tests/Ajax/FormValuesTest.php
@@ -10,6 +10,7 @@
  * @group Ajax
  */
 class FormValuesTest extends AjaxTestBase {
+
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/system/src/Tests/Ajax/FrameworkTest.php b/core/modules/system/src/Tests/Ajax/FrameworkTest.php
index 14bae06..507493b 100644
--- a/core/modules/system/src/Tests/Ajax/FrameworkTest.php
+++ b/core/modules/system/src/Tests/Ajax/FrameworkTest.php
@@ -16,6 +16,7 @@
  * @group Ajax
  */
 class FrameworkTest extends AjaxTestBase {
+
   /**
    * Verifies the Ajax rendering of a command in the settings.
    */
diff --git a/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php b/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php
index d335518..4f5d427 100644
--- a/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php
+++ b/core/modules/system/src/Tests/Form/ElementsTableSelectTest.php
@@ -163,7 +163,6 @@ public function testAdvancedSelect() {
     $this->assertNoFieldByXPath('//th[@class="select-all"]', NULL, 'Do not display a "Select all" checkbox when #multiple is FALSE, even when #js_select is TRUE.');
   }
 
-
   /**
    * Test the whether the option checker gives an error on invalid tableselect values for checkboxes.
    */
@@ -187,7 +186,6 @@ public function testMultipleTrueOptionchecker() {
 
   }
 
-
   /**
    * Test the whether the option checker gives an error on invalid tableselect values for radios.
    */
@@ -211,7 +209,6 @@ public function testMultipleFalseOptionchecker() {
     $this->assertTrue(isset($errors['tableselect']), 'Option checker disallows invalid values for radio buttons.');
   }
 
-
   /**
    * Helper function for the option check test to submit a form while collecting errors.
    *
diff --git a/core/modules/system/src/Tests/Installer/DistributionProfileTranslationTest.php b/core/modules/system/src/Tests/Installer/DistributionProfileTranslationTest.php
index a4c8091..39f44bb 100644
--- a/core/modules/system/src/Tests/Installer/DistributionProfileTranslationTest.php
+++ b/core/modules/system/src/Tests/Installer/DistributionProfileTranslationTest.php
@@ -100,7 +100,6 @@ protected function setUpSettings() {
     parent::setUpSettings();
   }
 
-
   /**
    * Confirms that the installation succeeded.
    */
diff --git a/core/modules/system/src/Tests/Path/UrlAliasFixtures.php b/core/modules/system/src/Tests/Path/UrlAliasFixtures.php
index 71cd736..bb57c31 100644
--- a/core/modules/system/src/Tests/Path/UrlAliasFixtures.php
+++ b/core/modules/system/src/Tests/Path/UrlAliasFixtures.php
@@ -71,7 +71,6 @@ public function sampleUrlAliases() {
     ];
   }
 
-
   /**
    * Returns the table definition for the URL alias fixtures.
    *
diff --git a/core/modules/system/system.post_update.php b/core/modules/system/system.post_update.php
index 66fa24a..a16bec8 100644
--- a/core/modules/system/system.post_update.php
+++ b/core/modules/system/system.post_update.php
@@ -49,7 +49,6 @@ function system_post_update_add_region_to_entity_displays() {
   array_map($entity_save, EntityFormDisplay::loadMultiple());
 }
 
-
 /**
  * Force caches using hashes to be cleared (Twig, render cache, etc.).
  */
diff --git a/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php b/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php
index daedcf1..eafe8a9 100644
--- a/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php
+++ b/core/modules/system/tests/modules/ajax_test/src/Form/AjaxTestDialogForm.php
@@ -67,7 +67,6 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
     $form_state->setRedirect('ajax_test.dialog_contents');
   }
 
-
   /**
    * AJAX callback handler for AjaxTestDialogForm.
    */
@@ -82,7 +81,6 @@ public function nonModal(&$form, FormStateInterface $form_state) {
     return $this->dialog(FALSE);
   }
 
-
   /**
    * Util to render dialog in ajax callback.
    *
diff --git a/core/modules/system/tests/modules/database_test/database_test.module b/core/modules/system/tests/modules/database_test/database_test.module
index 1eaa103..2109984 100644
--- a/core/modules/system/tests/modules/database_test/database_test.module
+++ b/core/modules/system/tests/modules/database_test/database_test.module
@@ -38,7 +38,6 @@ function database_test_query_alter(AlterableInterface $query) {
   }
 }
 
-
 /**
  * Implements hook_query_TAG_alter().
  *
diff --git a/core/modules/system/tests/modules/dialog_renderer_test/src/Render/MainContent/WideModalRenderer.php b/core/modules/system/tests/modules/dialog_renderer_test/src/Render/MainContent/WideModalRenderer.php
index 2fd9828..4b3aee9 100644
--- a/core/modules/system/tests/modules/dialog_renderer_test/src/Render/MainContent/WideModalRenderer.php
+++ b/core/modules/system/tests/modules/dialog_renderer_test/src/Render/MainContent/WideModalRenderer.php
@@ -38,7 +38,6 @@ public function __construct(TitleResolverInterface $title_resolver, $mode = 'wid
     $this->mode = $mode;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php b/core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php
index a693488..fa69e78 100644
--- a/core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php
+++ b/core/modules/system/tests/modules/entity_test/src/Controller/EntityTestController.php
@@ -95,7 +95,6 @@ public function listEntitiesAlphabetically($entity_type_id) {
     ];
   }
 
-
   /**
    * Empty list of entities of the given entity type.
    *
diff --git a/core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php b/core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php
index d46db77..1bc25bb 100644
--- a/core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php
+++ b/core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php
@@ -139,6 +139,7 @@ public static function addLink(array $form, FormStateInterface $form_state) {
     ];
     return $form;
   }
+
   /**
    * Ajax callback for the "Add field" button.
    */
@@ -179,7 +180,6 @@ public static function addAssertWaitOnAjaxRequest(array $form, FormStateInterfac
     return $form;
   }
 
-
   /**
    * Ajax callback for the "Test waitForElementVisible" button.
    */
diff --git a/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php b/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
index fe6566c..8472b99 100644
--- a/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
+++ b/core/modules/system/tests/modules/menu_test/src/Controller/MenuTestController.php
@@ -71,7 +71,6 @@ public function menuTestCallback() {
     return ['#markup' => 'This is the menuTestCallback content.'];
   }
 
-
   /**
    * A title callback method for test routes.
    *
diff --git a/core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php b/core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php
index 6cd97a0..11993b7 100644
--- a/core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php
+++ b/core/modules/system/tests/modules/module_autoload_test/src/SomeClass.php
@@ -3,6 +3,7 @@
 namespace Drupal\module_autoload_test;
 
 class SomeClass {
+
   public function testMethod() {
     return 'Drupal\\module_autoload_test\\SomeClass::testMethod() was invoked.';
   }
diff --git a/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
index 443ab5d..78a02a9 100644
--- a/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
+++ b/core/modules/system/tests/modules/plugin_test/src/Plugin/MockBlockManager.php
@@ -12,6 +12,7 @@
  * Defines a plugin manager used by Plugin API derivative unit tests.
  */
 class MockBlockManager extends PluginManagerBase {
+
   public function __construct() {
 
     // Create the object that can be used to return definitions for all the
diff --git a/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php b/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php
index ec464a5..d044baf 100644
--- a/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php
+++ b/core/modules/system/tests/modules/plugin_test/src/Plugin/TestPluginManager.php
@@ -10,6 +10,7 @@
  * Defines a plugin manager used by Plugin API unit tests.
  */
 class TestPluginManager extends PluginManagerBase {
+
   public function __construct() {
 
     // Create the object that can be used to return definitions for all the
diff --git a/core/modules/system/tests/modules/theme_test/src/ThemeTestController.php b/core/modules/system/tests/modules/theme_test/src/ThemeTestController.php
index f1ed8f3..c9a9390 100644
--- a/core/modules/system/tests/modules/theme_test/src/ThemeTestController.php
+++ b/core/modules/system/tests/modules/theme_test/src/ThemeTestController.php
@@ -119,7 +119,6 @@ public function functionSuggestionAlter() {
     return ['#theme' => 'theme_test_function_suggestions'];
   }
 
-
   /**
    * Menu callback for testing includes with suggestion alter hooks.
    */
diff --git a/core/modules/system/tests/modules/update_test_schema/update_test_schema.install b/core/modules/system/tests/modules/update_test_schema/update_test_schema.install
index 972f901..eef6b25 100644
--- a/core/modules/system/tests/modules/update_test_schema/update_test_schema.install
+++ b/core/modules/system/tests/modules/update_test_schema/update_test_schema.install
@@ -31,6 +31,7 @@ function update_test_schema_schema() {
 $schema_version = \Drupal::state()->get('update_test_schema_version', 8000);
 
 if ($schema_version >= 8001) {
+
   /**
    * Schema version 8001.
    */
@@ -45,4 +46,5 @@ function update_test_schema_update_8001() {
     // Add a column.
     db_add_index('update_test_schema_table', 'test', ['a'], $table);
   }
+
 }
diff --git a/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php b/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php
index 2d7c7ae..97dc6e7 100644
--- a/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php
+++ b/core/modules/system/tests/src/Functional/Batch/ProcessingTest.php
@@ -175,7 +175,6 @@ public function testBatchLargePercentage() {
     $this->assertText('Redirection successful.', 'Redirection after batch execution is correct.');
   }
 
-
   /**
    * Triggers a pass if the texts were found in order in the raw content.
    *
diff --git a/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php b/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php
index 6c5a9d6..b699603 100644
--- a/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php
+++ b/core/modules/system/tests/src/Functional/Entity/ConfigEntityImportTest.php
@@ -42,6 +42,7 @@ public function testConfigUpdateImport() {
     $this->doImageStyleUpdate();
     $this->doSearchPageUpdate();
   }
+
   /**
    * Tests updating a action during import.
    */
diff --git a/core/modules/system/tests/src/Functional/Entity/Update/UpdateApiEntityDefinitionUpdateTest.php b/core/modules/system/tests/src/Functional/Entity/Update/UpdateApiEntityDefinitionUpdateTest.php
index f3285ae..1c3c6e3 100644
--- a/core/modules/system/tests/src/Functional/Entity/Update/UpdateApiEntityDefinitionUpdateTest.php
+++ b/core/modules/system/tests/src/Functional/Entity/Update/UpdateApiEntityDefinitionUpdateTest.php
@@ -34,7 +34,6 @@ class UpdateApiEntityDefinitionUpdateTest extends BrowserTestBase {
    */
   protected $updatesManager;
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php b/core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php
index bdbfd74..4d1f4d3 100644
--- a/core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php
+++ b/core/modules/system/tests/src/Functional/Mail/HtmlToTextTest.php
@@ -14,6 +14,7 @@
  * @group Mail
  */
 class HtmlToTextTest extends BrowserTestBase {
+
   /**
    * Converts a string to its PHP source equivalent for display in test messages.
    *
diff --git a/core/modules/system/tests/src/Functional/Module/DependencyTest.php b/core/modules/system/tests/src/Functional/Module/DependencyTest.php
index 0fc78ca..d293872 100644
--- a/core/modules/system/tests/src/Functional/Module/DependencyTest.php
+++ b/core/modules/system/tests/src/Functional/Module/DependencyTest.php
@@ -10,6 +10,7 @@
  * @group Module
  */
 class DependencyTest extends ModuleTestBase {
+
   /**
    * Checks functionality of project namespaces for dependencies.
    */
diff --git a/core/modules/system/tests/src/Functional/Module/HookRequirementsTest.php b/core/modules/system/tests/src/Functional/Module/HookRequirementsTest.php
index a873d96..2ada3a2 100644
--- a/core/modules/system/tests/src/Functional/Module/HookRequirementsTest.php
+++ b/core/modules/system/tests/src/Functional/Module/HookRequirementsTest.php
@@ -8,6 +8,7 @@
  * @group Module
  */
 class HookRequirementsTest extends ModuleTestBase {
+
   /**
    * Assert that a module cannot be installed if it fails hook_requirements().
    */
diff --git a/core/modules/system/tests/src/Functional/Module/RequiredTest.php b/core/modules/system/tests/src/Functional/Module/RequiredTest.php
index 00c7cbe..d190e6c 100644
--- a/core/modules/system/tests/src/Functional/Module/RequiredTest.php
+++ b/core/modules/system/tests/src/Functional/Module/RequiredTest.php
@@ -8,6 +8,7 @@
  * @group Module
  */
 class RequiredTest extends ModuleTestBase {
+
   /**
    * Assert that core required modules cannot be disabled.
    */
diff --git a/core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php b/core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php
index dbd82cd..6fcc4b8 100644
--- a/core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php
+++ b/core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php
@@ -10,6 +10,7 @@
  * @group system
  */
 class AdminMetaTagTest extends BrowserTestBase {
+
   /**
    * Verify that the meta tag HTML is generated correctly.
    */
diff --git a/core/modules/system/tests/src/Functional/System/IndexPhpTest.php b/core/modules/system/tests/src/Functional/System/IndexPhpTest.php
index 2bf0989..4675fed 100644
--- a/core/modules/system/tests/src/Functional/System/IndexPhpTest.php
+++ b/core/modules/system/tests/src/Functional/System/IndexPhpTest.php
@@ -10,6 +10,7 @@
  * @group system
  */
 class IndexPhpTest extends BrowserTestBase {
+
   protected function setUp() {
     parent::setUp();
   }
diff --git a/core/modules/system/tests/src/Functional/System/RetrieveFileTest.php b/core/modules/system/tests/src/Functional/System/RetrieveFileTest.php
index ef12a51..cf64f07 100644
--- a/core/modules/system/tests/src/Functional/System/RetrieveFileTest.php
+++ b/core/modules/system/tests/src/Functional/System/RetrieveFileTest.php
@@ -10,6 +10,7 @@
  * @group system
  */
 class RetrieveFileTest extends BrowserTestBase {
+
   /**
    * Invokes system_retrieve_file() in several scenarios.
    */
diff --git a/core/modules/system/tests/src/Functional/Update/RouterIndexOptimizationTest.php b/core/modules/system/tests/src/Functional/Update/RouterIndexOptimizationTest.php
index a3bfad2..0a952c5 100644
--- a/core/modules/system/tests/src/Functional/Update/RouterIndexOptimizationTest.php
+++ b/core/modules/system/tests/src/Functional/Update/RouterIndexOptimizationTest.php
@@ -10,6 +10,7 @@
  * @group Update
  */
 class RouterIndexOptimizationTest extends UpdatePathTestBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/system/tests/src/Kernel/Common/SystemListingTest.php b/core/modules/system/tests/src/Kernel/Common/SystemListingTest.php
index b0412b4..221daee 100644
--- a/core/modules/system/tests/src/Kernel/Common/SystemListingTest.php
+++ b/core/modules/system/tests/src/Kernel/Common/SystemListingTest.php
@@ -11,6 +11,7 @@
  * @group Common
  */
 class SystemListingTest extends KernelTestBase {
+
   /**
    * Tests that files in different directories take precedence as expected.
    */
diff --git a/core/modules/taxonomy/src/Plugin/views/field/TermName.php b/core/modules/taxonomy/src/Plugin/views/field/TermName.php
index 0a777e9..eefc3e3 100644
--- a/core/modules/taxonomy/src/Plugin/views/field/TermName.php
+++ b/core/modules/taxonomy/src/Plugin/views/field/TermName.php
@@ -31,7 +31,6 @@ public function getItems(ResultRow $values) {
     return $items;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php b/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php
index a48c191..1f4a5bf 100644
--- a/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php
+++ b/core/modules/text/tests/src/Kernel/TextWithSummaryItemTest.php
@@ -37,7 +37,6 @@ class TextWithSummaryItemTest extends FieldKernelTestBase {
    */
   protected $field;
 
-
   protected function setUp() {
     parent::setUp();
 
diff --git a/core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php b/core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php
index 9526480..db0f2b4 100644
--- a/core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php
+++ b/core/modules/tracker/src/Plugin/Menu/UserTrackerTab.php
@@ -32,7 +32,6 @@ protected function currentUser() {
     return $this->currentUser;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Entity/User.php b/core/modules/user/src/Entity/User.php
index 54439cf..f707f06 100644
--- a/core/modules/user/src/Entity/User.php
+++ b/core/modules/user/src/Entity/User.php
@@ -348,6 +348,7 @@ public function getInitialEmail() {
   public function isAuthenticated() {
     return $this->id() > 0;
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Plugin/Block/UserLoginBlock.php b/core/modules/user/src/Plugin/Block/UserLoginBlock.php
index a9341f9..8649494 100644
--- a/core/modules/user/src/Plugin/Block/UserLoginBlock.php
+++ b/core/modules/user/src/Plugin/Block/UserLoginBlock.php
@@ -64,7 +64,6 @@ public static function create(ContainerInterface $container, array $configuratio
     );
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Plugin/migrate/process/d6/UserUpdate7002.php b/core/modules/user/src/Plugin/migrate/process/d6/UserUpdate7002.php
index 0efae5d..858fcfc 100644
--- a/core/modules/user/src/Plugin/migrate/process/d6/UserUpdate7002.php
+++ b/core/modules/user/src/Plugin/migrate/process/d6/UserUpdate7002.php
@@ -54,6 +54,7 @@ public static function create(ContainerInterface $container, array $configuratio
       $container->get('config.factory')->get('system.date')
     );
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php b/core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php
index 0d5bd6b..288cf6c 100644
--- a/core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php
+++ b/core/modules/user/src/Plugin/migrate/source/d6/UserPicture.php
@@ -37,6 +37,7 @@ public function fields() {
       'picture' => "Path to the user's uploaded picture.",
     ];
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php b/core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php
index 72d18fd..4414198 100644
--- a/core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php
+++ b/core/modules/user/src/Plugin/migrate/source/d6/UserPictureFile.php
@@ -68,6 +68,7 @@ public function fields() {
       'filename' => 'The picture filename.',
     ];
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/src/Plugin/views/access/Permission.php b/core/modules/user/src/Plugin/views/access/Permission.php
index 8d0c43d..291eb1c 100644
--- a/core/modules/user/src/Plugin/views/access/Permission.php
+++ b/core/modules/user/src/Plugin/views/access/Permission.php
@@ -100,7 +100,6 @@ public function summaryTitle() {
     return $this->t($this->options['perm']);
   }
 
-
   protected function defineOptions() {
     $options = parent::defineOptions();
     $options['perm'] = ['default' => 'access content'];
diff --git a/core/modules/user/src/Plugin/views/access/Role.php b/core/modules/user/src/Plugin/views/access/Role.php
index e35daa1..d1fe8ab 100644
--- a/core/modules/user/src/Plugin/views/access/Role.php
+++ b/core/modules/user/src/Plugin/views/access/Role.php
@@ -96,7 +96,6 @@ public function summaryTitle() {
     }
   }
 
-
   protected function defineOptions() {
     $options = parent::defineOptions();
     $options['role'] = ['default' => []];
diff --git a/core/modules/user/src/Plugin/views/field/UserData.php b/core/modules/user/src/Plugin/views/field/UserData.php
index 365ab3b..1a4bb82 100644
--- a/core/modules/user/src/Plugin/views/field/UserData.php
+++ b/core/modules/user/src/Plugin/views/field/UserData.php
@@ -34,7 +34,6 @@ class UserData extends FieldPluginBase {
    */
   protected $moduleHandler;
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php b/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php
index c2b15ff..fd6fdd2 100644
--- a/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php
+++ b/core/modules/user/tests/src/Functional/Views/HandlerFilterUserNameTest.php
@@ -66,7 +66,6 @@ protected function setUp($import_test_views = TRUE) {
     }
   }
 
-
   /**
    * Tests just using the filter.
    */
diff --git a/core/modules/user/tests/src/Kernel/UserInstallTest.php b/core/modules/user/tests/src/Kernel/UserInstallTest.php
index f61811b..be3336f 100644
--- a/core/modules/user/tests/src/Kernel/UserInstallTest.php
+++ b/core/modules/user/tests/src/Kernel/UserInstallTest.php
@@ -28,7 +28,6 @@ protected function setUp() {
     user_install();
   }
 
-
   /**
    * Test that the initial users have correct values.
    */
diff --git a/core/modules/user/tests/src/Unit/PrivateTempStoreTest.php b/core/modules/user/tests/src/Unit/PrivateTempStoreTest.php
index be9376a..2d8e092 100644
--- a/core/modules/user/tests/src/Unit/PrivateTempStoreTest.php
+++ b/core/modules/user/tests/src/Unit/PrivateTempStoreTest.php
@@ -96,7 +96,6 @@ protected function setUp() {
     $this->otherObject->owner = 2;
   }
 
-
   /**
    * Tests the get() method.
    *
diff --git a/core/modules/views/src/Analyzer.php b/core/modules/views/src/Analyzer.php
index a6a8d56..311c47e 100644
--- a/core/modules/views/src/Analyzer.php
+++ b/core/modules/views/src/Analyzer.php
@@ -31,7 +31,6 @@ public function __construct(ModuleHandlerInterface $module_handler) {
     $this->moduleHandler = $module_handler;
   }
 
-
   /**
    * Analyzes a review and return the results.
    *
diff --git a/core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php b/core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php
index f6a045c..de9bb26 100644
--- a/core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php
+++ b/core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php
@@ -11,6 +11,7 @@
  * The derivatives store all base table plugin information.
  */
 class DefaultWizardDeriver extends DeriverBase {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/Menu/ViewsMenuLink.php b/core/modules/views/src/Plugin/Menu/ViewsMenuLink.php
index b4f078f..3cbfc84 100644
--- a/core/modules/views/src/Plugin/Menu/ViewsMenuLink.php
+++ b/core/modules/views/src/Plugin/Menu/ViewsMenuLink.php
@@ -126,7 +126,6 @@ public function isExpanded() {
     return (bool) $this->loadView()->display_handler->getOption('menu')['expanded'];
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php
index 4cc4e4b..209c7af 100644
--- a/core/modules/views/src/Plugin/views/HandlerBase.php
+++ b/core/modules/views/src/Plugin/views/HandlerBase.php
@@ -313,6 +313,7 @@ public function setModuleHandler(ModuleHandlerInterface $module_handler) {
   public function usesGroupBy() {
     return TRUE;
   }
+
   /**
    * Provide a form for aggregation settings.
    */
diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
index 9bcd5ba..96a41f3 100644
--- a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
@@ -398,7 +398,6 @@ protected function getTokenHelp() {
     return $output;
   }
 
-
   public function validateOptionsForm(&$form, FormStateInterface $form_state) {
     $option_values = &$form_state->getValue('options');
     if (empty($option_values)) {
@@ -721,6 +720,7 @@ public function validateFail() {
     $info = $this->defaultActions($this->options['validate']['fail']);
     return $this->defaultAction($info);
   }
+
   /**
    * Default action: ignore.
    *
diff --git a/core/modules/views/src/Plugin/views/cache/None.php b/core/modules/views/src/Plugin/views/cache/None.php
index d05abd2..fc9b58b 100644
--- a/core/modules/views/src/Plugin/views/cache/None.php
+++ b/core/modules/views/src/Plugin/views/cache/None.php
@@ -19,7 +19,6 @@ public function summaryTitle() {
     return $this->t('None');
   }
 
-
   /**
    * Overrides \Drupal\views\Plugin\views\cache\CachePluginBase::cacheGet().
    *
diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
index 012dec4..c77d213 100644
--- a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
+++ b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
@@ -962,7 +962,6 @@ public function calculateDependencies() {
     return $this->dependencies;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php b/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php
index f8630af..80e4783 100644
--- a/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php
+++ b/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php
@@ -457,7 +457,6 @@ public function getCacheMetadata();
    */
   public function execute();
 
-
   /**
    * Builds a basic render array which can be properly render cached.
    *
diff --git a/core/modules/views/src/Plugin/views/display/Feed.php b/core/modules/views/src/Plugin/views/display/Feed.php
index c664c05..db1bc1c 100644
--- a/core/modules/views/src/Plugin/views/display/Feed.php
+++ b/core/modules/views/src/Plugin/views/display/Feed.php
@@ -73,7 +73,6 @@ public static function buildResponse($view_id, $display_id, array $args = []) {
     return $response;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/field/EntityOperations.php b/core/modules/views/src/Plugin/views/field/EntityOperations.php
index 6f08829..d31cd1e 100644
--- a/core/modules/views/src/Plugin/views/field/EntityOperations.php
+++ b/core/modules/views/src/Plugin/views/field/EntityOperations.php
@@ -158,6 +158,7 @@ protected function getEntityManager() {
   protected function getLanguageManager() {
     return $this->languageManager;
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/filter/BooleanOperator.php b/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
index fa0d730..81a3188 100644
--- a/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
+++ b/core/modules/views/src/Plugin/views/filter/BooleanOperator.php
@@ -48,7 +48,6 @@ class BooleanOperator extends FilterPluginBase {
   // Whether to accept NULL as a false value or not
   public $accept_null = FALSE;
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
index fd273dd..b49190b 100644
--- a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
+++ b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
@@ -656,7 +656,6 @@ protected function hasValidGroupedValue(array $group) {
     return FALSE;
   }
 
-
   /**
    * Validate the build group options form.
    */
@@ -835,7 +834,6 @@ public function groupForm(&$form, FormStateInterface $form_state) {
     }
   }
 
-
   /**
    * Render our chunk of the exposed filter form when selecting
    *
@@ -1165,7 +1163,6 @@ public function addGroupForm($form, FormStateInterface $form_state) {
     $form_state->get('force_build_group_options', TRUE);
   }
 
-
   /**
    * Make some translations to a form item to make it more suitable to
    * exposing.
@@ -1207,7 +1204,6 @@ protected function exposedTranslate(&$form, $type) {
     }
   }
 
-
   /**
    * Sanitizes the HTML select element's options.
    *
diff --git a/core/modules/views/src/Plugin/views/filter/GroupByNumeric.php b/core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
index 577b2df..d68970b 100644
--- a/core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
+++ b/core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
@@ -20,6 +20,7 @@ public function query() {
       $this->{$info[$this->operator]['method']}($field);
     }
   }
+
   protected function opBetween($field) {
     $placeholder_min = $this->placeholder();
     $placeholder_max = $this->placeholder();
diff --git a/core/modules/views/src/Plugin/views/filter/ManyToOne.php b/core/modules/views/src/Plugin/views/filter/ManyToOne.php
index 86eb1f3..1b3810c 100644
--- a/core/modules/views/src/Plugin/views/filter/ManyToOne.php
+++ b/core/modules/views/src/Plugin/views/filter/ManyToOne.php
@@ -103,6 +103,7 @@ public function operators() {
   }
 
   protected $valueFormType = 'select';
+
   protected function valueForm(&$form, FormStateInterface $form_state) {
     parent::valueForm($form, $form_state);
 
diff --git a/core/modules/views/src/Plugin/views/filter/NumericFilter.php b/core/modules/views/src/Plugin/views/filter/NumericFilter.php
index cdfbb06..ed19bee 100644
--- a/core/modules/views/src/Plugin/views/filter/NumericFilter.php
+++ b/core/modules/views/src/Plugin/views/filter/NumericFilter.php
@@ -190,6 +190,7 @@ protected function operatorValues($values = 1) {
 
     return $options;
   }
+
   /**
    * Provide a simple textfield for equality
    */
diff --git a/core/modules/views/src/Plugin/views/join/JoinPluginBase.php b/core/modules/views/src/Plugin/views/join/JoinPluginBase.php
index ccf40f6..a7ac37d 100644
--- a/core/modules/views/src/Plugin/views/join/JoinPluginBase.php
+++ b/core/modules/views/src/Plugin/views/join/JoinPluginBase.php
@@ -281,6 +281,7 @@ public function buildJoin($select_query, $table, $view_query) {
 
     $select_query->addJoin($this->type, $right_table, $table['alias'], $condition, $arguments);
   }
+
   /**
    * Adds the extras to the join condition.
    *
diff --git a/core/modules/views/src/Plugin/views/pager/SqlBase.php b/core/modules/views/src/Plugin/views/pager/SqlBase.php
index d683202..5195acf 100644
--- a/core/modules/views/src/Plugin/views/pager/SqlBase.php
+++ b/core/modules/views/src/Plugin/views/pager/SqlBase.php
@@ -233,7 +233,6 @@ public function query() {
     $this->view->query->setOffset($offset);
   }
 
-
   /**
    * Set the current page.
    *
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
index b57c970..ed96dec 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/join/JoinTest.php
@@ -35,7 +35,6 @@ public function setJoinValue($join_value) {
     $this->joinValue = $join_value;
   }
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php
index 8868f75..230e428 100644
--- a/core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php
+++ b/core/modules/views/tests/modules/views_test_data/src/Plugin/views/query/QueryTest.php
@@ -74,7 +74,6 @@ public function addOrderBy($table, $field = NULL, $order = 'ASC', $alias = '', $
     $this->orderBy = ['field' => $field, 'order' => $order];
   }
 
-
   public function ensureTable($table, $relationship = NULL, JoinPluginBase $join = NULL) {
     // There is no concept of joins.
   }
diff --git a/core/modules/views/tests/src/Functional/Handler/AreaTest.php b/core/modules/views/tests/src/Functional/Handler/AreaTest.php
index d631373..cf877d1 100644
--- a/core/modules/views/tests/src/Functional/Handler/AreaTest.php
+++ b/core/modules/views/tests/src/Functional/Handler/AreaTest.php
@@ -48,7 +48,6 @@ protected function viewsData() {
     return $data;
   }
 
-
   /**
    * Tests the generic UI of a area handler.
    */
diff --git a/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php b/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php
index 57eb232..816af90 100644
--- a/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php
+++ b/core/modules/views/tests/src/Functional/Plugin/ArgumentDefaultTest.php
@@ -81,7 +81,6 @@ public function testArgumentDefaultPlugin() {
     $this->assertIdenticalResultset($view, $expected_result, ['views_test_data_name' => 'name']);
   }
 
-
   /**
    * Tests the use of a default argument plugin that provides no options.
    */
diff --git a/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php b/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php
index 8c326ba..4466844 100644
--- a/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php
+++ b/core/modules/views/tests/src/Functional/Plugin/DisplayAttachmentTest.php
@@ -36,7 +36,6 @@ protected function setUp($import_test_views = TRUE) {
     $this->drupalLogin($admin_user);
   }
 
-
   /**
    * Tests the attachment plugin.
    */
diff --git a/core/modules/views/tests/src/Functional/ViewRenderTest.php b/core/modules/views/tests/src/Functional/ViewRenderTest.php
index aaf894c..24eee7e 100644
--- a/core/modules/views/tests/src/Functional/ViewRenderTest.php
+++ b/core/modules/views/tests/src/Functional/ViewRenderTest.php
@@ -24,7 +24,6 @@ protected function setUp($import_test_views = TRUE) {
     $this->enableViewsTestModule();
   }
 
-
   /**
    * Tests render functionality.
    */
diff --git a/core/modules/views/tests/src/Functional/ViewsFormMultipleTest.php b/core/modules/views/tests/src/Functional/ViewsFormMultipleTest.php
index 03d5bce..c4c709e 100644
--- a/core/modules/views/tests/src/Functional/ViewsFormMultipleTest.php
+++ b/core/modules/views/tests/src/Functional/ViewsFormMultipleTest.php
@@ -38,7 +38,6 @@ protected function viewsData() {
     return $data;
   }
 
-
   /**
    * Tests the a page with multiple View forms in it.
    */
diff --git a/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php b/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php
index 8f85f69..ed00f68 100644
--- a/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/ComputedFieldTest.php
@@ -28,7 +28,6 @@ class ComputedFieldTest extends ViewsKernelTestBase {
    */
   public static $modules = ['entity_test'];
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php
index d78f7c9..4f8c496 100644
--- a/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/FilterEqualityTest.php
@@ -146,7 +146,6 @@ public function testEqualGroupedNotExposed() {
     $this->assertIdenticalResultset($view, $resultset, $this->columnMap);
   }
 
-
   protected function getGroupedExposedFilters() {
     $filters = [
       'name' => [
diff --git a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
index 03c1b87..5d8f71f 100644
--- a/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
+++ b/core/modules/views/tests/src/Kernel/Handler/FilterStringTest.php
@@ -222,7 +222,6 @@ public function testFilterStringContains() {
     $this->assertIdenticalResultset($view, $resultset, $this->columnMap);
   }
 
-
   public function testFilterStringGroupedExposedContains() {
     $filters = $this->getGroupedExposedFilters();
     $view = $this->getBasicPageView();
@@ -245,7 +244,6 @@ public function testFilterStringGroupedExposedContains() {
     $this->assertIdenticalResultset($view, $resultset, $this->columnMap);
   }
 
-
   public function testFilterStringWord() {
     $view = Views::getView('test_view');
     $view->setDisplay();
@@ -334,7 +332,6 @@ public function testFilterStringWord() {
     $this->assertIdenticalResultset($view, $resultset);
   }
 
-
   public function testFilterStringGroupedExposedWord() {
     $filters = $this->getGroupedExposedFilters();
     $view = $this->getBasicPageView();
@@ -618,7 +615,6 @@ public function testFilterStringNot() {
     $this->assertIdenticalResultset($view, $resultset, $this->columnMap);
   }
 
-
   public function testFilterStringGroupedExposedNot() {
     $filters = $this->getGroupedExposedFilters();
     $view = $this->getBasicPageView();
@@ -741,7 +737,6 @@ public function testFilterStringGroupedExposedLonger() {
     $this->assertIdenticalResultset($view, $resultset, $this->columnMap);
   }
 
-
   public function testFilterStringEmpty() {
     $view = Views::getView('test_view');
     $view->setDisplay();
diff --git a/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php b/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php
index 9f6066e..708b404 100644
--- a/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php
+++ b/core/modules/views/tests/src/Kernel/Plugin/CacheTest.php
@@ -61,7 +61,6 @@ protected function viewsData() {
     return $data;
   }
 
-
   /**
    * Tests time based caching.
    *
diff --git a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
index e4a0884..25d8b4a 100644
--- a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
+++ b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
@@ -51,7 +51,6 @@ protected function setUp($import_test_views = TRUE) {
     ConfigurableLanguage::createFromLangcode('it')->save();
   }
 
-
   /**
    * Tests aggregate count feature.
    */
diff --git a/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php b/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php
index 4bbe402..af69ba1 100644
--- a/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php
+++ b/core/modules/views/tests/src/Kernel/ViewsKernelTestBase.php
@@ -48,6 +48,7 @@ protected function setUp($import_test_views = TRUE) {
       ViewTestData::createTestViews(get_class($this), ['views_test_config']);
     }
   }
+
   /**
    * Sets up the configuration and schema of views and views_test_data modules.
    *
diff --git a/core/modules/views/tests/src/Unit/EntityViewsDataTest.php b/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
index 1bd3970..b5062b7 100644
--- a/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
+++ b/core/modules/views/tests/src/Unit/EntityViewsDataTest.php
@@ -1129,16 +1129,20 @@ public function setKey($key, $value) {
 namespace Drupal\entity_test\Entity;
 
 if (!function_exists('t')) {
+
   function t($string, array $args = []) {
     return strtr($string, $args);
   }
+
 }
 
 
 namespace Drupal\Core\Entity;
 
 if (!function_exists('t')) {
+
   function t($string, array $args = []) {
     return strtr($string, $args);
   }
+
 }
diff --git a/core/modules/views/tests/src/Unit/Plugin/Block/ViewsBlockTest.php b/core/modules/views/tests/src/Unit/Plugin/Block/ViewsBlockTest.php
index f9bd6d2..e7cd984 100644
--- a/core/modules/views/tests/src/Unit/Plugin/Block/ViewsBlockTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/Block/ViewsBlockTest.php
@@ -204,6 +204,8 @@ public function testBuildFailed() {
 namespace Drupal\views\Plugin\Block;
 
 if (!function_exists('views_add_contextual_links')) {
+
   function views_add_contextual_links() {
   }
+
 }
diff --git a/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php b/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php
index a7bcf81..71ab347 100644
--- a/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php
@@ -775,7 +775,9 @@ public function setLinkGenerator(LinkGeneratorInterface $link_generator) {
 namespace Drupal\views\Plugin\views\field;
 
 if (!function_exists('base_path')) {
+
   function base_path() {
     return '/';
   }
+
 }
diff --git a/core/modules/views/tests/src/Unit/Routing/ViewPageControllerTest.php b/core/modules/views/tests/src/Unit/Routing/ViewPageControllerTest.php
index 9242545..6ced52e 100644
--- a/core/modules/views/tests/src/Unit/Routing/ViewPageControllerTest.php
+++ b/core/modules/views/tests/src/Unit/Routing/ViewPageControllerTest.php
@@ -182,6 +182,8 @@ public function testHandleWithArgumentsOnOverriddenRouteWithUpcasting() {
 namespace Drupal\views\Routing;
 
 if (!function_exists('views_add_contextual_links')) {
+
   function views_add_contextual_links() {
   }
+
 }
diff --git a/core/modules/workflows/tests/src/Unit/WorkflowTest.php b/core/modules/workflows/tests/src/Unit/WorkflowTest.php
index dc77a3d..c10ddf9 100644
--- a/core/modules/workflows/tests/src/Unit/WorkflowTest.php
+++ b/core/modules/workflows/tests/src/Unit/WorkflowTest.php
@@ -417,7 +417,6 @@ public function testGetTransitions() {
     $this->assertArrayEquals([], array_keys($workflow->getTypePlugin()->getTransitions([])));
   }
 
-
   /**
    * @covers ::getTransition
    */
@@ -474,7 +473,6 @@ public function testGetTransitionsForState() {
     $this->assertEquals(['archive'], array_keys($workflow->getTypePlugin()->getTransitionsForState('archived', 'to')));
   }
 
-
   /**
    * @covers ::getTransitionFromStateToState
    * @covers ::hasTransitionFromStateToState
diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist
index ef47c87..f34bbb8 100644
--- a/core/phpcs.xml.dist
+++ b/core/phpcs.xml.dist
@@ -304,6 +304,11 @@
   <rule ref="Squiz.WhiteSpace.LanguageConstructSpacing" />
   <rule ref="Squiz.WhiteSpace.SemicolonSpacing"/>
   <rule ref="Squiz.WhiteSpace.SuperfluousWhitespace"/>
+  <rule ref="Squiz.WhiteSpace.FunctionSpacing">
+    <properties>
+      <property name="spacing" value="1"/>
+    </properties>
+  </rule>
 
   <!-- Zend sniffs -->
   <rule ref="Zend.Files.ClosingTag"/>
diff --git a/core/scripts/update-countries.sh b/core/scripts/update-countries.sh
index abcc699..539d732 100755
--- a/core/scripts/update-countries.sh
+++ b/core/scripts/update-countries.sh
@@ -37,9 +37,11 @@
 // Fake the t() function used in CountryManager.php instead of attempting a full
 // Drupal bootstrap of core/includes/bootstrap.inc (where t() is declared).
 if (!function_exists('t')) {
+
   function t($string) {
     return $string;
   }
+
 }
 
 // Read in existing codes.
diff --git a/core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php b/core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php
index 281cb78..ce5167a 100644
--- a/core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php
+++ b/core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php
@@ -100,6 +100,7 @@ public function waitForElementVisible($selector, $locator, $timeout = 10000) {
 
     return $result;
   }
+
   /**
    * Waits for a button (input[type=submit|image|button|reset], button) with
    * specified locator and returns it.
diff --git a/core/tests/Drupal/FunctionalTests/Image/ToolkitTest.php b/core/tests/Drupal/FunctionalTests/Image/ToolkitTest.php
index 789369c..17c9115 100644
--- a/core/tests/Drupal/FunctionalTests/Image/ToolkitTest.php
+++ b/core/tests/Drupal/FunctionalTests/Image/ToolkitTest.php
@@ -8,6 +8,7 @@
  * @group Image
  */
 class ToolkitTest extends ToolkitTestBase {
+
   /**
    * Check that ImageToolkitManager::getAvailableToolkits() only returns
    * available toolkits.
diff --git a/core/tests/Drupal/KernelTests/Core/Database/BasicSyntaxTest.php b/core/tests/Drupal/KernelTests/Core/Database/BasicSyntaxTest.php
index 53a87b7..17f8ebb 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/BasicSyntaxTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/BasicSyntaxTest.php
@@ -12,6 +12,7 @@
  * @group Database
  */
 class BasicSyntaxTest extends DatabaseTestBase {
+
   /**
    * Tests string concatenation.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Database/CaseSensitivityTest.php b/core/tests/Drupal/KernelTests/Core/Database/CaseSensitivityTest.php
index cd241e5..37b876c 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/CaseSensitivityTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/CaseSensitivityTest.php
@@ -8,6 +8,7 @@
  * @group Database
  */
 class CaseSensitivityTest extends DatabaseTestBase {
+
   /**
    * Tests BINARY collation in MySQL.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Database/InvalidDataTest.php b/core/tests/Drupal/KernelTests/Core/Database/InvalidDataTest.php
index 371800b..f6af91f 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/InvalidDataTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/InvalidDataTest.php
@@ -11,6 +11,7 @@
  * @group Database
  */
 class InvalidDataTest extends DatabaseTestBase {
+
   /**
    * Tests aborting of traditional SQL database systems with invalid data.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php b/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php
index cd3ec4a..23ec664 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/SelectComplexTest.php
@@ -245,7 +245,6 @@ public function testCountQueryRemovals() {
     $this->assertEqual($count, 4, 'Counted the correct number of records.');
   }
 
-
   /**
    * Tests that countQuery properly removes fields and expressions.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/Database/SerializeQueryTest.php b/core/tests/Drupal/KernelTests/Core/Database/SerializeQueryTest.php
index 357b39f..b3299d6 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/SerializeQueryTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/SerializeQueryTest.php
@@ -8,6 +8,7 @@
  * @group Database
  */
 class SerializeQueryTest extends DatabaseTestBase {
+
   /**
    * Confirms that a query can be serialized and unserialized.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php b/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php
index 0bd546b..a096ae8 100644
--- a/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/ScanDirectoryTest.php
@@ -129,7 +129,6 @@ public function testOptionRecurse() {
     $this->assertEqual(2, count($files), 'With recursion we found the expected javascript files.');
   }
 
-
   /**
    * Check that the min_depth options lets us ignore files in the starting
    * directory.
diff --git a/core/tests/Drupal/KernelTests/Core/File/UnmanagedCopyTest.php b/core/tests/Drupal/KernelTests/Core/File/UnmanagedCopyTest.php
index d3c5cd4..655bb5f 100644
--- a/core/tests/Drupal/KernelTests/Core/File/UnmanagedCopyTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/UnmanagedCopyTest.php
@@ -11,6 +11,7 @@
  * @group File
  */
 class UnmanagedCopyTest extends FileTestBase {
+
   /**
    * Copy a normal file.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteRecursiveTest.php b/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteRecursiveTest.php
index 64045fe..05acac4 100644
--- a/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteRecursiveTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteRecursiveTest.php
@@ -8,6 +8,7 @@
  * @group File
  */
 class UnmanagedDeleteRecursiveTest extends FileTestBase {
+
   /**
    * Delete a normal file.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteTest.php b/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteTest.php
index d1cfb2e..6871f19 100644
--- a/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/UnmanagedDeleteTest.php
@@ -8,6 +8,7 @@
  * @group File
  */
 class UnmanagedDeleteTest extends FileTestBase {
+
   /**
    * Delete a normal file.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/File/UnmanagedMoveTest.php b/core/tests/Drupal/KernelTests/Core/File/UnmanagedMoveTest.php
index 8619a15..2e3f50c 100644
--- a/core/tests/Drupal/KernelTests/Core/File/UnmanagedMoveTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/UnmanagedMoveTest.php
@@ -11,6 +11,7 @@
  * @group File
  */
 class UnmanagedMoveTest extends FileTestBase {
+
   /**
    * Move a normal file.
    */
diff --git a/core/tests/Drupal/KernelTests/Core/File/UnmanagedSaveDataTest.php b/core/tests/Drupal/KernelTests/Core/File/UnmanagedSaveDataTest.php
index 5493323..86ea029 100644
--- a/core/tests/Drupal/KernelTests/Core/File/UnmanagedSaveDataTest.php
+++ b/core/tests/Drupal/KernelTests/Core/File/UnmanagedSaveDataTest.php
@@ -8,6 +8,7 @@
  * @group File
  */
 class UnmanagedSaveDataTest extends FileTestBase {
+
   /**
    * Test the file_unmanaged_save_data() function.
    */
diff --git a/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php b/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php
index f418244..717e327 100644
--- a/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php
+++ b/core/tests/Drupal/Tests/Component/Assertion/InspectorTest.php
@@ -256,6 +256,7 @@ public static function callMeStatic() {
  * Quick class for testing for objects with __toString.
  */
 class StringObject {
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php b/core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php
index de68488..94cf51a 100644
--- a/core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php
+++ b/core/tests/Drupal/Tests/Component/Plugin/PluginBaseTest.php
@@ -63,7 +63,6 @@ public function providerTestGetBaseId() {
     ];
   }
 
-
   /**
    * @dataProvider providerTestGetDerivativeId
    * @covers ::getDerivativeId
diff --git a/core/tests/Drupal/Tests/Component/Serialization/JsonTest.php b/core/tests/Drupal/Tests/Component/Serialization/JsonTest.php
index d12ec61..036fa66 100644
--- a/core/tests/Drupal/Tests/Component/Serialization/JsonTest.php
+++ b/core/tests/Drupal/Tests/Component/Serialization/JsonTest.php
@@ -32,7 +32,6 @@ class JsonTest extends TestCase {
    */
   protected $htmlUnsafeEscaped;
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php b/core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php
index 9099d6f..70cbd4a 100644
--- a/core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php
+++ b/core/tests/Drupal/Tests/Component/Utility/ArgumentsResolverTest.php
@@ -206,6 +206,7 @@ public function providerTestHandleUnresolvedArgument() {
  * Provides a test class.
  */
 class TestClass {
+
   public function access($foo) {
   }
 
diff --git a/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php b/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
index 231f809..f6214d6 100644
--- a/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
+++ b/core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
@@ -567,6 +567,7 @@ protected function setupAccessArgumentsResolverFactory($constraint = NULL) {
  * Defines an interface with a defined access() method for mocking.
  */
 interface TestAccessCheckInterface extends AccessCheckInterface {
+
   public function access();
 
 }
diff --git a/core/tests/Drupal/Tests/Core/Access/AccessResultTest.php b/core/tests/Drupal/Tests/Core/Access/AccessResultTest.php
index 60a17a0..519de8d 100644
--- a/core/tests/Drupal/Tests/Core/Access/AccessResultTest.php
+++ b/core/tests/Drupal/Tests/Core/Access/AccessResultTest.php
@@ -957,6 +957,7 @@ class UncacheableTestAccessResult implements AccessResultInterface {
   public function __construct($value) {
     $this->value = $value;
   }
+
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Core/Asset/AssetResolverTest.php b/core/tests/Drupal/Tests/Core/Asset/AssetResolverTest.php
index 6ed63aa..95cacea 100644
--- a/core/tests/Drupal/Tests/Core/Asset/AssetResolverTest.php
+++ b/core/tests/Drupal/Tests/Core/Asset/AssetResolverTest.php
@@ -162,6 +162,7 @@ public function providerAttachedAssets() {
 }
 
 class TestMemoryBackend extends MemoryBackend {
+
   public function getAllCids() {
     return array_keys($this->cache);
   }
diff --git a/core/tests/Drupal/Tests/Core/Asset/CssCollectionRendererUnitTest.php b/core/tests/Drupal/Tests/Core/Asset/CssCollectionRendererUnitTest.php
index 4ff4b83..ba0b4db 100644
--- a/core/tests/Drupal/Tests/Core/Asset/CssCollectionRendererUnitTest.php
+++ b/core/tests/Drupal/Tests/Core/Asset/CssCollectionRendererUnitTest.php
@@ -473,9 +473,11 @@ public function testRenderInvalidType() {
  * Component/Utility.
  */
 if (!function_exists('Drupal\Tests\Core\Asset\file_create_url')) {
+
   function file_create_url($uri) {
     return 'file_create_url:' . $uri;
   }
+
 }
 
 /**
@@ -483,9 +485,11 @@ function file_create_url($uri) {
  * Component/Utility.
  */
 if (!function_exists('Drupal\Tests\Core\Asset\file_url_transform_relative')) {
+
   function file_url_transform_relative($uri) {
     return 'file_url_transform_relative:' . $uri;
   }
+
 }
 
 /**
diff --git a/core/tests/Drupal/Tests/Core/Asset/CssOptimizerUnitTest.php b/core/tests/Drupal/Tests/Core/Asset/CssOptimizerUnitTest.php
index 59ddca0e..f2e70b9 100644
--- a/core/tests/Drupal/Tests/Core/Asset/CssOptimizerUnitTest.php
+++ b/core/tests/Drupal/Tests/Core/Asset/CssOptimizerUnitTest.php
@@ -269,9 +269,11 @@ public function testTypeExternal() {
  * Component/Utility.
  */
 if (!function_exists('Drupal\Tests\Core\Asset\file_create_url')) {
+
   function file_create_url($uri) {
     return 'file_create_url:' . $uri;
   }
+
 }
 
 /**
@@ -279,9 +281,11 @@ function file_create_url($uri) {
  * Component/Utility.
  */
 if (!function_exists('Drupal\Tests\Core\Asset\file_url_transform_relative')) {
+
   function file_url_transform_relative($uri) {
     return 'file_url_transform_relative:' . $uri;
   }
+
 }
 
 /**
diff --git a/core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php b/core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php
index 40e1821..ddcf8ce 100644
--- a/core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php
+++ b/core/tests/Drupal/Tests/Core/Asset/LibraryDependencyResolverTest.php
@@ -64,7 +64,6 @@ protected function setUp() {
     $this->libraryDependencyResolver = new LibraryDependencyResolver($this->libraryDiscovery);
   }
 
-
   /**
    * Provides test data for ::testGetLibrariesWithDependencies().
    */
diff --git a/core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php b/core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
index cbb0666..7a758cd 100644
--- a/core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
+++ b/core/tests/Drupal/Tests/Core/Asset/LibraryDiscoveryParserTest.php
@@ -211,7 +211,6 @@ public function testVersion() {
     $this->assertEquals(\Drupal::VERSION, $libraries['core-versioned']['js'][0]['version']);
   }
 
-
   /**
    * Tests that the version property of external libraries is handled.
    *
@@ -399,6 +398,7 @@ public function testLibraryWithJavaScript() {
     $this->assertEquals(FALSE, $library['js'][0]['minified']);
     $this->assertEquals(TRUE, $library['js'][1]['minified']);
   }
+
   /**
    * Tests that an exception is thrown when license is missing when 3rd party.
    *
diff --git a/core/tests/Drupal/Tests/Core/Batch/PercentagesTest.php b/core/tests/Drupal/Tests/Core/Batch/PercentagesTest.php
index 0c905e6..382ae29 100644
--- a/core/tests/Drupal/Tests/Core/Batch/PercentagesTest.php
+++ b/core/tests/Drupal/Tests/Core/Batch/PercentagesTest.php
@@ -23,6 +23,7 @@ public function testPercentages($total, $current, $expected_result) {
     $actual_result = Percentage::format($total, $current);
     $this->assertEquals($actual_result, $expected_result, sprintf('The expected the batch api percentage at the state %s/%s is %s%% and got %s%%.', $current, $total, $expected_result, $actual_result));
   }
+
   /**
    * Provide data for batch unit tests.
    *
diff --git a/core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php b/core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php
index 0c06a4b..50b1eee 100644
--- a/core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php
+++ b/core/tests/Drupal/Tests/Core/Cache/CacheCollectorTest.php
@@ -59,7 +59,6 @@ protected function setUp() {
     $this->getContainerWithCacheTagsInvalidator($this->cacheTagsInvalidator);
   }
 
-
   /**
    * Tests the resolve cache miss function.
    */
@@ -85,7 +84,6 @@ public function testSetAndGet() {
     $this->assertEquals($value, $this->collector->get($key));
   }
 
-
   /**
    * Makes sure that NULL is a valid value and is collected.
    */
@@ -192,7 +190,6 @@ public function testUpdateCache() {
     $this->collector->destruct();
   }
 
-
   /**
    * Tests updating the cache when the lock acquire fails.
    */
diff --git a/core/tests/Drupal/Tests/Core/Cache/CacheTest.php b/core/tests/Drupal/Tests/Core/Cache/CacheTest.php
index 446afcd..5d7f269 100644
--- a/core/tests/Drupal/Tests/Core/Cache/CacheTest.php
+++ b/core/tests/Drupal/Tests/Core/Cache/CacheTest.php
@@ -53,7 +53,6 @@ public function testValidateTags(array $tags, $expected_exception_message) {
     $this->assertNull(Cache::validateTags($tags));
   }
 
-
   /**
    * Provides a list of pairs of cache tags arrays to be merged.
    *
@@ -102,7 +101,6 @@ public function mergeMaxAgesProvider() {
     ];
   }
 
-
   /**
    * @covers ::mergeMaxAges
    *
diff --git a/core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php b/core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php
index 5c41668..b73e342 100644
--- a/core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php
+++ b/core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php
@@ -189,6 +189,7 @@ public function providerTestGetControllerFromDefinition() {
       ['Drupal\Tests\Core\Controller\MockInvokeController', 'This used __invoke().'],
     ];
   }
+
   /**
    * Tests getControllerFromDefinition() without a callable.
    */
@@ -251,6 +252,7 @@ public function testGetArgumentsWithRouteMatchAndPsr7Request() {
 }
 
 class MockController {
+
   public function getResult() {
     return 'This is a regular controller.';
   }
@@ -261,6 +263,7 @@ public function getControllerWithRequestAndRouteMatch(RouteMatchInterface $route
 
 }
 class MockControllerPsr7 {
+
   public function getResult() {
     return ['#markup' => 'This is a regular controller'];
   }
@@ -273,12 +276,15 @@ public function getControllerWithRequestAndRouteMatch(RouteMatchInterface $route
 
 class MockContainerInjection implements ContainerInjectionInterface {
   protected $result;
+
   public function __construct($result) {
     $this->result = $result;
   }
+
   public static function create(ContainerInterface $container) {
     return new static('This used injection.');
   }
+
   public function getResult() {
     return $this->result;
   }
@@ -286,12 +292,14 @@ public function getResult() {
 }
 class MockContainerAware implements ContainerAwareInterface {
   use ContainerAwareTrait;
+
   public function getResult() {
     return 'This is container aware.';
   }
 
 }
 class MockInvokeController {
+
   public function __invoke() {
     return 'This used __invoke().';
   }
diff --git a/core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php b/core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php
index 19548cd..7cea807 100644
--- a/core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php
+++ b/core/tests/Drupal/Tests/Core/Database/EmptyStatementTest.php
@@ -12,6 +12,7 @@
  * @group Database
  */
 class EmptyStatementTest extends UnitTestCase {
+
   /**
    * Tests that the empty result set behaves as empty.
    */
diff --git a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php
index 638bd15..44d45fb 100644
--- a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php
+++ b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/ProxyServicesPassTest.php
@@ -29,7 +29,6 @@ protected function setUp() {
     $this->proxyServicesPass = new ProxyServicesPass();
   }
 
-
   /**
    * @covers ::process
    */
diff --git a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php
index 848c458..30a515c 100644
--- a/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php
+++ b/core/tests/Drupal/Tests/Core/DependencyInjection/Compiler/TaggedHandlersPassTest.php
@@ -433,26 +433,34 @@ public function testProcessWithDifferentArgumentsOrderAndDefaultValue() {
 interface HandlerInterface {
 }
 class ValidConsumer {
+
   public function addHandler(HandlerInterface $instance, $priority = 0) {
   }
+
   public function addNoPriority(HandlerInterface $instance) {
   }
+
   public function addWithId(HandlerInterface $instance, $id, $priority = 0) {
   }
 
 }
 class InvalidConsumer {
+
   public function addHandler($instance, $priority = 0) {
   }
 
 }
 class ValidConsumerWithExtraArguments {
+
   public function addHandler(HandlerInterface $instance, $priority = 0, $extra1 = '', $extra2 = '') {
   }
+
   public function addNoPriority(HandlerInterface $instance, $extra) {
   }
+
   public function addWithId(HandlerInterface $instance, $id, $priority = 0, $extra1 = '', $extra2 = NULL) {
   }
+
   public function addWithDifferentOrder(HandlerInterface $instance, $extra1, $priority = 0, $extra2 = 'default2', $extra3 = 'default3') {
   }
 
diff --git a/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php b/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
index 9ca4fff..da041bd 100644
--- a/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
+++ b/core/tests/Drupal/Tests/Core/DrupalKernel/DrupalKernelTest.php
@@ -245,8 +245,10 @@ public function findFile() {
 namespace {
 
   if (!function_exists('drupal_valid_test_ua')) {
+
     function drupal_valid_test_ua($new_prefix = NULL) {
       return FALSE;
     }
+
   }
 }
diff --git a/core/tests/Drupal/Tests/Core/Entity/Access/EntityFormDisplayAccessControlHandlerTest.php b/core/tests/Drupal/Tests/Core/Entity/Access/EntityFormDisplayAccessControlHandlerTest.php
index a92d76a..01d9ae2 100644
--- a/core/tests/Drupal/Tests/Core/Entity/Access/EntityFormDisplayAccessControlHandlerTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/Access/EntityFormDisplayAccessControlHandlerTest.php
@@ -69,7 +69,6 @@ class EntityFormDisplayAccessControlHandlerTest extends UnitTestCase {
    */
   protected $entity;
 
-
   /**
    * Returns a mock Entity Type Manager.
    *
diff --git a/core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php b/core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php
index 616f6ba..81069c3 100644
--- a/core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php
@@ -29,7 +29,6 @@ class BaseFieldDefinitionTest extends UnitTestCase {
    */
   protected $fieldTypeDefinition;
 
-
   /**
    * {@inheritdoc}
    */
diff --git a/core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php b/core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php
index 55928b9..6662cb2 100644
--- a/core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/EntityListBuilderTest.php
@@ -154,6 +154,7 @@ public function testGetOperations() {
 }
 
 class TestEntityListBuilder extends EntityTestListBuilder {
+
   public function buildOperations(EntityInterface $entity) {
     return [];
   }
diff --git a/core/tests/Drupal/Tests/Core/Entity/Routing/DefaultHtmlRouteProviderTest.php b/core/tests/Drupal/Tests/Core/Entity/Routing/DefaultHtmlRouteProviderTest.php
index 4e25e4e..8f89eaa 100644
--- a/core/tests/Drupal/Tests/Core/Entity/Routing/DefaultHtmlRouteProviderTest.php
+++ b/core/tests/Drupal/Tests/Core/Entity/Routing/DefaultHtmlRouteProviderTest.php
@@ -356,15 +356,19 @@ class TestDefaultHtmlRouteProvider extends DefaultHtmlRouteProvider {
   public function getEntityTypeIdKeyType(EntityTypeInterface $entity_type) {
     return parent::getEntityTypeIdKeyType($entity_type);
   }
+
   public function getAddPageRoute(EntityTypeInterface $entity_type) {
     return parent::getAddPageRoute($entity_type);
   }
+
   public function getAddFormRoute(EntityTypeInterface $entity_type) {
     return parent::getAddFormRoute($entity_type);
   }
+
   public function getCanonicalRoute(EntityTypeInterface $entity_type) {
     return parent::getCanonicalRoute($entity_type);
   }
+
   public function getCollectionRoute(EntityTypeInterface $entity_type) {
     return parent::getCollectionRoute($entity_type);
   }
diff --git a/core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php b/core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php
index f5855be..8529f33 100644
--- a/core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php
+++ b/core/tests/Drupal/Tests/Core/EventSubscriber/PsrResponseSubscriberTest.php
@@ -54,7 +54,6 @@ public function testConvertsControllerResult() {
     $this->psrResponseSubscriber->onKernelView($event);
   }
 
-
   /**
    * Tests altering and finished event.
    *
diff --git a/core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php b/core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php
index 80a0c76..3b9d09a 100644
--- a/core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php
+++ b/core/tests/Drupal/Tests/Core/Extension/ExtensionListTest.php
@@ -155,7 +155,6 @@ public function testGetPathname() {
     $this->assertEquals('vfs://drupal_root/example/test_name/test_name.info.yml', $pathname);
   }
 
-
   /**
    * @covers ::setPathname
    * @covers ::getPathname
diff --git a/core/tests/Drupal/Tests/Core/Field/FieldDefinitionListenerTest.php b/core/tests/Drupal/Tests/Core/Field/FieldDefinitionListenerTest.php
index 8bedf07..1312f40 100644
--- a/core/tests/Drupal/Tests/Core/Field/FieldDefinitionListenerTest.php
+++ b/core/tests/Drupal/Tests/Core/Field/FieldDefinitionListenerTest.php
@@ -232,7 +232,6 @@ public function testOnFieldDefinitionDeleteMultipleBundles() {
     $this->fieldDefinitionListener->onFieldDefinitionDelete($field_definition->reveal());
   }
 
-
   /**
    * @covers ::onFieldDefinitionDelete
    */
diff --git a/core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php b/core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php
index 76b7584..8d20db5 100644
--- a/core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php
+++ b/core/tests/Drupal/Tests/Core/Form/FormBuilderTest.php
@@ -881,6 +881,7 @@ public function providerTestFormTokenCacheability() {
 }
 
 class TestForm implements FormInterface {
+
   public function getFormId() {
     return 'test_form';
   }
@@ -888,11 +889,14 @@ public function getFormId() {
   public function buildForm(array $form, FormStateInterface $form_state) {
     return test_form_id();
   }
+
   public function validateForm(array &$form, FormStateInterface $form_state) {}
+
   public function submitForm(array &$form, FormStateInterface $form_state) {}
 
 }
 class TestFormInjected extends TestForm implements ContainerInjectionInterface {
+
   public static function create(ContainerInterface $container) {
     return new static();
   }
diff --git a/core/tests/Drupal/Tests/Core/Form/FormCacheTest.php b/core/tests/Drupal/Tests/Core/Form/FormCacheTest.php
index 3ae9d6c..f089bc3 100644
--- a/core/tests/Drupal/Tests/Core/Form/FormCacheTest.php
+++ b/core/tests/Drupal/Tests/Core/Form/FormCacheTest.php
@@ -417,7 +417,6 @@ public function testSetCacheBuildIdMismatch() {
     $this->formCache->setCache($form_build_id, $form, $form_state);
   }
 
-
   /**
    * @covers ::deleteCache
    */
diff --git a/core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php b/core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php
index de7baa9..ae42e51 100644
--- a/core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php
+++ b/core/tests/Drupal/Tests/Core/Form/FormStateDecoratorBaseTest.php
@@ -1119,6 +1119,7 @@ public function testGetValues() {
 
     $this->assertSame($values, $this->formStateDecoratorBase->getValues());
   }
+
   /**
    * @covers ::getValue
    */
diff --git a/core/tests/Drupal/Tests/Core/Form/FormStateTest.php b/core/tests/Drupal/Tests/Core/Form/FormStateTest.php
index 23579a1..aa60d61 100644
--- a/core/tests/Drupal/Tests/Core/Form/FormStateTest.php
+++ b/core/tests/Drupal/Tests/Core/Form/FormStateTest.php
@@ -434,12 +434,15 @@ public function testGetValues() {
  * A test form used for the prepareCallback() tests.
  */
 class PrepareCallbackTestForm implements FormInterface {
+
   public function getFormId() {
     return 'test_form';
   }
 
   public function buildForm(array $form, FormStateInterface $form_state) {}
+
   public function validateForm(array &$form, FormStateInterface $form_state) {}
+
   public function submitForm(array &$form, FormStateInterface $form_state) {}
 
 }
diff --git a/core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php b/core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php
index 9ba2fb5..ea52302 100644
--- a/core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php
+++ b/core/tests/Drupal/Tests/Core/Mail/MailManagerTest.php
@@ -135,7 +135,6 @@ public function testGetInstance() {
     $this->assertInstanceOf('Drupal\Core\Mail\Plugin\Mail\TestMailCollector', $instance);
   }
 
-
   /**
    * Tests that mails are sent in a separate render context.
    *
@@ -163,6 +162,7 @@ public function testMailInRenderContext() {
  * Provides a testing version of MailManager with an empty constructor.
  */
 class TestMailManager extends MailManager {
+
   /**
    * Sets the discovery for the manager.
    *
diff --git a/core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php b/core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php
index 84b91af..cc5514a 100644
--- a/core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php
+++ b/core/tests/Drupal/Tests/Core/Menu/LocalTaskDefaultTest.php
@@ -317,6 +317,7 @@ public function testCacheabilityMetadata() {
 }
 
 class TestLocalTaskDefault extends LocalTaskDefault {
+
   public function setRouteProvider(RouteProviderInterface $route_provider) {
     $this->routeProvider = $route_provider;
     return $this;
diff --git a/core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php b/core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php
index a4e57ea..5c81b7e 100644
--- a/core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php
+++ b/core/tests/Drupal/Tests/Core/Password/PasswordHashingTest.php
@@ -76,7 +76,6 @@ public function testWithinBounds() {
     $this->assertEquals(PhpassHashedPassword::MAX_HASH_COUNT, $hasher->enforceLog2Boundaries(100), "Max hash count enforced");
   }
 
-
   /**
    * Test a password needs update.
    *
diff --git a/core/tests/Drupal/Tests/Core/Path/AliasManagerTest.php b/core/tests/Drupal/Tests/Core/Path/AliasManagerTest.php
index ffd52dc..109c7cc 100644
--- a/core/tests/Drupal/Tests/Core/Path/AliasManagerTest.php
+++ b/core/tests/Drupal/Tests/Core/Path/AliasManagerTest.php
@@ -145,7 +145,6 @@ public function testGetPathByAliasLangcode() {
     $this->assertEquals($path, $this->aliasManager->getPathByAlias($alias, 'de'));
   }
 
-
   /**
    * Tests the getAliasByPath method for a path that is not in the whitelist.
    *
diff --git a/core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionIsSatisfiedTest.php b/core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionIsSatisfiedTest.php
index edde3f9..20ce7b5 100644
--- a/core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionIsSatisfiedTest.php
+++ b/core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionIsSatisfiedTest.php
@@ -338,7 +338,9 @@ public function providerTestIsSatisfiedByPassBundledEntity() {
 namespace Drupal\Core\Validation;
 
 if (!function_exists('t')) {
+
   function t($string, array $args = []) {
     return strtr($string, $args);
   }
+
 }
diff --git a/core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php b/core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php
index 5cf8d9c..f1ca26e 100644
--- a/core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php
+++ b/core/tests/Drupal/Tests/Core/Plugin/ContextHandlerTest.php
@@ -408,7 +408,6 @@ public function testApplyContextMappingNoValueRequired() {
     $this->contextHandler->applyContextMapping($plugin, $contexts);
   }
 
-
   /**
    * @covers ::applyContextMapping
    */
diff --git a/core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php b/core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php
index 9f4eb95..8eb4b3d 100644
--- a/core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php
+++ b/core/tests/Drupal/Tests/Core/Plugin/Discovery/HookDiscoveryTest.php
@@ -135,6 +135,7 @@ protected function hookDiscoveryTestTestPlugin() {
       'test_id_2' => ['class' => 'Drupal\plugin_test\Plugin\plugin_test\fruit\Orange'],
     ];
   }
+
   protected function hookDiscoveryTest2TestPlugin() {
     return [
       'test_id_3' => ['class' => 'Drupal\plugin_test\Plugin\plugin_test\fruit\Cherry'],
diff --git a/core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php b/core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php
index a881e7c..040b1f9 100644
--- a/core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/BubbleableMetadataTest.php
@@ -641,7 +641,6 @@ public function providerTestMergeAttachmentsHttpHeaderMerging() {
     ];
   }
 
-
   /**
    * @covers ::addCacheableDependency
    * @dataProvider providerTestMerge
diff --git a/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php b/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
index 0dcdc58..db463d8 100644
--- a/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/Element/MachineNameTest.php
@@ -42,7 +42,6 @@ public function providerTestValueCallback() {
     return $data;
   }
 
-
   /**
    * @covers ::processMachineName
    */
@@ -112,7 +111,9 @@ public function testProcessMachineName() {
 namespace Drupal\Core\Render\Element;
 
 if (!function_exists('t')) {
+
   function t($string, array $args = []) {
     return strtr($string, $args);
   }
+
 }
diff --git a/core/tests/Drupal/Tests/Core/Render/RendererPlaceholdersTest.php b/core/tests/Drupal/Tests/Core/Render/RendererPlaceholdersTest.php
index 253a358..8cfa0fd 100644
--- a/core/tests/Drupal/Tests/Core/Render/RendererPlaceholdersTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/RendererPlaceholdersTest.php
@@ -574,6 +574,7 @@ protected function assertPlaceholderRenderCache($cid_parts, array $bubbled_cache
       $this->assertEquals($expected_data, $cached_element, 'The correct data is cached: the stored #markup and #attached properties are not affected by the placeholder being replaced.');
     }
   }
+
   /**
    * @covers ::render
    * @covers ::doRender
diff --git a/core/tests/Drupal/Tests/Core/Routing/RouteBuilderTest.php b/core/tests/Drupal/Tests/Core/Routing/RouteBuilderTest.php
index d075934..974df43 100644
--- a/core/tests/Drupal/Tests/Core/Routing/RouteBuilderTest.php
+++ b/core/tests/Drupal/Tests/Core/Routing/RouteBuilderTest.php
@@ -311,11 +311,13 @@ protected function getRouteDefinitions() {
  * Provides a callback for route definition.
  */
 class TestRouteSubscriber {
+
   public function routesFromArray() {
     return [
       'test_route.1' => new Route('/test-route/1'),
     ];
   }
+
   public function routesFromCollection() {
     $collection = new RouteCollection();
     $collection->add('test_route.2', new Route('/test-route/2'));
diff --git a/core/tests/Drupal/Tests/Core/Routing/RouteMatchTestBase.php b/core/tests/Drupal/Tests/Core/Routing/RouteMatchTestBase.php
index 4d2a914..a47ec73 100644
--- a/core/tests/Drupal/Tests/Core/Routing/RouteMatchTestBase.php
+++ b/core/tests/Drupal/Tests/Core/Routing/RouteMatchTestBase.php
@@ -26,7 +26,6 @@
    */
   abstract protected function getRouteMatch($name, Route $route, array $parameters, array $raw_parameters);
 
-
   /**
    * Provide sets of parameters and expected parameters for parameter tests.
    */
diff --git a/core/tests/Drupal/Tests/Core/Routing/RoutePreloaderTest.php b/core/tests/Drupal/Tests/Core/Routing/RoutePreloaderTest.php
index 90b4a9d..4b7c741 100644
--- a/core/tests/Drupal/Tests/Core/Routing/RoutePreloaderTest.php
+++ b/core/tests/Drupal/Tests/Core/Routing/RoutePreloaderTest.php
@@ -97,7 +97,6 @@ public function testOnAlterRoutesWithAdminPathNoAdminRoute() {
     $this->preloader->onFinishedRoutes(new Event());
   }
 
-
   /**
    * Tests onAlterRoutes with admin routes and non admin routes.
    */
diff --git a/core/tests/Drupal/Tests/Core/Session/AccountProxyTest.php b/core/tests/Drupal/Tests/Core/Session/AccountProxyTest.php
index 0e575a0..3e6d501 100644
--- a/core/tests/Drupal/Tests/Core/Session/AccountProxyTest.php
+++ b/core/tests/Drupal/Tests/Core/Session/AccountProxyTest.php
@@ -47,7 +47,9 @@ public function testSetInitialAccountIdException() {
 namespace Drupal\Core\Session;
 
 if (!function_exists('drupal_get_user_timezone')) {
+
   function drupal_get_user_timezone() {
     return date_default_timezone_get();
   }
+
 }
diff --git a/core/tests/Drupal/Tests/Core/Session/PermissionsHashGeneratorTest.php b/core/tests/Drupal/Tests/Core/Session/PermissionsHashGeneratorTest.php
index aa980f8..ef12531 100644
--- a/core/tests/Drupal/Tests/Core/Session/PermissionsHashGeneratorTest.php
+++ b/core/tests/Drupal/Tests/Core/Session/PermissionsHashGeneratorTest.php
@@ -250,6 +250,7 @@ public function testGenerateNoCache() {
 
 // @todo remove once user_role_permissions() can be injected.
 if (!function_exists('user_role_permissions')) {
+
   function user_role_permissions(array $roles) {
     $role_permissions = [];
     foreach ($roles as $rid) {
@@ -257,4 +258,5 @@ function user_role_permissions(array $roles) {
     }
     return $role_permissions;
   }
+
 }
diff --git a/core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php b/core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php
index 7b3a0d4..10d2df8 100644
--- a/core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php
+++ b/core/tests/Drupal/Tests/Core/StackMiddleware/NegotiationMiddlewareTest.php
@@ -142,6 +142,7 @@ public function testSetFormat() {
 }
 
 class StubNegotiationMiddleware extends NegotiationMiddleware {
+
   public function getContentType(Request $request) {
     return parent::getContentType($request);
   }
diff --git a/core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php b/core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php
index 0144919..c289b89 100644
--- a/core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php
+++ b/core/tests/Drupal/Tests/Core/TempStore/PrivateTempStoreTest.php
@@ -93,7 +93,6 @@ protected function setUp() {
     $this->otherObject->owner = 2;
   }
 
-
   /**
    * Tests the get() method.
    *
diff --git a/core/tests/Drupal/Tests/Core/UnroutedUrlTest.php b/core/tests/Drupal/Tests/Core/UnroutedUrlTest.php
index 680e2fd..fb4b84c 100644
--- a/core/tests/Drupal/Tests/Core/UnroutedUrlTest.php
+++ b/core/tests/Drupal/Tests/Core/UnroutedUrlTest.php
@@ -73,7 +73,6 @@ public function testFromUri($uri, $is_external) {
     $this->assertInstanceOf('Drupal\Core\Url', $url);
   }
 
-
   /**
    * Data provider for testFromUri().
    */
diff --git a/core/tests/Drupal/Tests/Listeners/HtmlOutputPrinter.php b/core/tests/Drupal/Tests/Listeners/HtmlOutputPrinter.php
index 8021989..49618b8 100644
--- a/core/tests/Drupal/Tests/Listeners/HtmlOutputPrinter.php
+++ b/core/tests/Drupal/Tests/Listeners/HtmlOutputPrinter.php
@@ -20,6 +20,7 @@ class_alias('Drupal\Tests\Listeners\Legacy\HtmlOutputPrinter', 'Drupal\Tests\Lis
    */
   class HtmlOutputPrinter extends ResultPrinter {
     use HtmlOutputPrinterTrait;
+
     /**
      * {@inheritdoc}
      */
diff --git a/core/tests/Drupal/Tests/PhpunitCompatibilityTraitTest.php b/core/tests/Drupal/Tests/PhpunitCompatibilityTraitTest.php
index 145980b..790831a 100644
--- a/core/tests/Drupal/Tests/PhpunitCompatibilityTraitTest.php
+++ b/core/tests/Drupal/Tests/PhpunitCompatibilityTraitTest.php
@@ -52,6 +52,7 @@ public function providerMockVersions() {
  * Test class for \PHPUnit\Framework\TestCase in PHPUnit 4.
  */
 class Phpunit4TestClass {
+
   public function getMock($originalClassName) {
     return 'PHPUnit 4';
   }
@@ -62,6 +63,7 @@ public function getMock($originalClassName) {
  * Test class for \PHPUnit\Framework\TestCase in PHPUnit 6.
  */
 class Phpunit6TestClass {
+
   public function createMock($originalClassName) {
     return 'PHPUnit 6';
   }
@@ -76,6 +78,7 @@ public function getMockbuilder() {
  * Test double for PHPUnit_Framework_MockObject_MockBuilder.
  */
 class Mockbuilder {
+
   public function __call($name, $arguments) {
     return $this;
   }
