diff --git a/core/includes/batch.inc b/core/includes/batch.inc
index a4b5378..532a1b5 100644
--- a/core/includes/batch.inc
+++ b/core/includes/batch.inc
@@ -118,7 +118,6 @@ function _batch_progress_page() {
   }
   else {
     // This is one of the later requests; do some processing first.
-
     // Error handling: if PHP dies due to a fatal error (e.g. a nonexistent
     // function), it will output whatever is in the output buffer, followed by
     // the error message.
@@ -289,7 +288,6 @@ function _batch_process() {
 
   if ($batch['progressive']) {
     // Gather progress information.
-
     // Reporting 100% progress will cause the whole batch to be considered
     // processed. If processing was paused right after moving to a new set,
     // we have to use the info from the new (unprocessed) set.
diff --git a/core/includes/errors.inc b/core/includes/errors.inc
index 36d3a41..388a70e 100644
--- a/core/includes/errors.inc
+++ b/core/includes/errors.inc
@@ -228,7 +228,6 @@ function _drupal_log_error($error, $fatal = FALSE) {
 
       if ($error_level != ERROR_REPORTING_DISPLAY_VERBOSE) {
         // Without verbose logging, use a simple message.
-
         // We call SafeMarkup::format() directly here, rather than use t() since
         // we are in the middle of error handling, and we don't want t() to
         // cause further errors.
@@ -236,7 +235,6 @@ function _drupal_log_error($error, $fatal = FALSE) {
       }
       else {
         // With verbose logging, we will also include a backtrace.
-
         // First trace is the error itself, already contained in the message.
         // While the second trace is the error source and also contained in the
         // message, the message doesn't contain argument values, so we output it
diff --git a/core/includes/pager.inc b/core/includes/pager.inc
index 6b6bbb7..dfbc92b 100644
--- a/core/includes/pager.inc
+++ b/core/includes/pager.inc
@@ -199,7 +199,6 @@ function template_preprocess_pager(&$variables) {
   // max is the maximum page number.
   $pager_max = $pager_total[$element];
   // End of marker calculations.
-
   // Prepare for generation loop.
   $i = $pager_first;
   if ($pager_last > $pager_max) {
@@ -213,7 +212,6 @@ function template_preprocess_pager(&$variables) {
     $i = 1;
   }
   // End of generation loop preparation.
-
   // Create the "first" and "previous" links if we are not on the first page.
   if ($pager_page_array[$element] > 0) {
     $items['first'] = array();
diff --git a/core/includes/theme.inc b/core/includes/theme.inc
index 33b1769..d9421e0 100644
--- a/core/includes/theme.inc
+++ b/core/includes/theme.inc
@@ -432,7 +432,6 @@ function theme_render_and_autoescape($arg) {
 
   // This is a normal render array, which is safe by definition, with special
   // simple cases already handled.
-
   // Early return if this element was pre-rendered (no need to re-render).
   if (isset($arg['#printed']) && $arg['#printed'] == TRUE && isset($arg['#markup']) && strlen($arg['#markup']) > 0) {
     return (string) $arg['#markup'];
@@ -1393,7 +1392,6 @@ function theme_get_suggestions($args, $base, $delimiter = '__') {
   // page__node__%
   // page__node__1
   // page__node__edit
-
   $suggestions = array();
   $prefix = $base;
   foreach ($args as $arg) {
diff --git a/core/lib/Drupal/Component/Gettext/PoStreamReader.php b/core/lib/Drupal/Component/Gettext/PoStreamReader.php
index faaa95f..bcceaa2 100644
--- a/core/lib/Drupal/Component/Gettext/PoStreamReader.php
+++ b/core/lib/Drupal/Component/Gettext/PoStreamReader.php
@@ -272,7 +272,6 @@ private function readLine() {
 
       if (!strncmp('#', $line, 1)) {
         // Lines starting with '#' are comments.
-
         if ($this->_context == 'COMMENT') {
           // Already in comment context, add to current comment.
           $this->_current_item['#'][] = substr($line, 1);
@@ -297,7 +296,6 @@ private function readLine() {
       }
       elseif (!strncmp('msgid_plural', $line, 12)) {
         // A plural form for the current source string.
-
         if ($this->_context != 'MSGID') {
           // A plural form can only be added to an msgid directly.
           $this->_errors[] = SafeMarkup::format('The translation stream %uri contains an error: "msgid_plural" was expected but not found on line %line.', $log_vars);
@@ -328,7 +326,6 @@ private function readLine() {
       }
       elseif (!strncmp('msgid', $line, 5)) {
         // Starting a new message.
-
         if (($this->_context == 'MSGSTR') || ($this->_context == 'MSGSTR_ARR')) {
           // We are currently in string context, save current item.
           $this->setItemFromArray($this->_current_item);
@@ -359,7 +356,6 @@ private function readLine() {
       }
       elseif (!strncmp('msgctxt', $line, 7)) {
         // Starting a new context.
-
         if (($this->_context == 'MSGSTR') || ($this->_context == 'MSGSTR_ARR')) {
           // We are currently in string context, save current item.
           $this->setItemFromArray($this->_current_item);
@@ -389,7 +385,6 @@ private function readLine() {
       }
       elseif (!strncmp('msgstr[', $line, 7)) {
         // A message string for a specific plurality.
-
         if (($this->_context != 'MSGID') &&
             ($this->_context != 'MSGCTXT') &&
             ($this->_context != 'MSGID_PLURAL') &&
@@ -431,7 +426,6 @@ private function readLine() {
       }
       elseif (!strncmp("msgstr", $line, 6)) {
         // A string pair for an msgid (with optional context).
-
         if (($this->_context != 'MSGID') && ($this->_context != 'MSGCTXT')) {
           // Strings are only valid within an id or context scope.
           $this->_errors[] = SafeMarkup::format('The translation stream %uri contains an error: "msgstr" is unexpected on line %line.', $log_vars);
@@ -456,7 +450,6 @@ private function readLine() {
       }
       elseif ($line != '') {
         // Anything that is not a token may be a continuation of a previous token.
-
         $quoted = $this->parseQuoted($line);
         if ($quoted === FALSE) {
           // This string must be quoted.
diff --git a/core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php b/core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php
index 96318ac..5a832b9 100644
--- a/core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php
+++ b/core/lib/Drupal/Component/Plugin/ContextAwarePluginBase.php
@@ -143,7 +143,6 @@ public function validateContexts() {
     $violations = new ConstraintViolationList();
     // @todo: Implement symfony validator API to let the validator traverse
     // and set property paths accordingly.
-
     foreach ($this->getContexts() as $context) {
       $violations->addAll($context->validate());
     }
diff --git a/core/lib/Drupal/Core/Archiver/Tar.php b/core/lib/Drupal/Core/Archiver/Tar.php
index 3bf66c0..34f0ee8 100644
--- a/core/lib/Drupal/Core/Archiver/Tar.php
+++ b/core/lib/Drupal/Core/Archiver/Tar.php
@@ -45,7 +45,6 @@ public function remove($file_path) {
     // so we'll have to simulate it somehow, probably by
     // creating a new archive with everything but the removed
     // file.
-
     return $this;
   }
 
diff --git a/core/lib/Drupal/Core/Cache/MemoryBackend.php b/core/lib/Drupal/Core/Cache/MemoryBackend.php
index a0d32bd..8d87eea 100644
--- a/core/lib/Drupal/Core/Cache/MemoryBackend.php
+++ b/core/lib/Drupal/Core/Cache/MemoryBackend.php
@@ -84,7 +84,6 @@ protected function prepareItem($cache, $allow_invalid) {
     // We must clone it as part of the preparation step so that the actual
     // cache object is not affected by the unserialize() call or other
     // manipulations of the returned object.
-
     $prepared = clone $cache;
     $prepared->data = unserialize($prepared->data);
 
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
index 9dd4fc2..8012281 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Upsert.php
@@ -69,7 +69,6 @@ public function execute() {
     $this->insertValues = array();
 
     // Transaction commits here where $transaction looses scope.
-
     return TRUE;
   }
 
diff --git a/core/lib/Drupal/Core/Database/Query/Insert.php b/core/lib/Drupal/Core/Database/Query/Insert.php
index f51b6ed..28581a7 100644
--- a/core/lib/Drupal/Core/Database/Query/Insert.php
+++ b/core/lib/Drupal/Core/Database/Query/Insert.php
@@ -100,7 +100,6 @@ public function execute() {
     $this->insertValues = array();
 
     // Transaction commits here where $transaction looses scope.
-
     return $last_insert_id;
   }
 
diff --git a/core/lib/Drupal/Core/Database/Query/Select.php b/core/lib/Drupal/Core/Database/Query/Select.php
index 07f4b5f..feadd86 100644
--- a/core/lib/Drupal/Core/Database/Query/Select.php
+++ b/core/lib/Drupal/Core/Database/Query/Select.php
@@ -884,7 +884,6 @@ public function __clone() {
     // On cloning, also clone the dependent objects. However, we do not
     // want to clone the database connection object as that would duplicate the
     // connection itself.
-
     $this->condition = clone($this->condition);
     $this->having = clone($this->having);
     foreach ($this->union as $key => $aggregate) {
diff --git a/core/lib/Drupal/Core/Database/StatementInterface.php b/core/lib/Drupal/Core/Database/StatementInterface.php
index e0147f4..a70bbf2 100644
--- a/core/lib/Drupal/Core/Database/StatementInterface.php
+++ b/core/lib/Drupal/Core/Database/StatementInterface.php
@@ -38,7 +38,6 @@
    * statements). The access type has to be protected.
    */
   //protected function __construct(Connection $dbh);
-
   /**
    * Executes a prepared statement
    *
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/TaggedHandlersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/TaggedHandlersPass.php
index 04b56aa..7f4e974 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/TaggedHandlersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/TaggedHandlersPass.php
@@ -105,7 +105,6 @@ public function process(ContainerBuilder $container) {
           }
         }
         // Determine the ID.
-
         if (!isset($interface)) {
           throw new LogicException(vsprintf("Service consumer '%s' class method %s::%s() has to type-hint an interface.", array(
             $consumer_id,
diff --git a/core/lib/Drupal/Core/DependencyInjection/YamlFileLoader.php b/core/lib/Drupal/Core/DependencyInjection/YamlFileLoader.php
index 55f8fce..5a68374 100644
--- a/core/lib/Drupal/Core/DependencyInjection/YamlFileLoader.php
+++ b/core/lib/Drupal/Core/DependencyInjection/YamlFileLoader.php
@@ -66,7 +66,6 @@ public function load($file)
 
         // Not supported.
         //$this->container->addResource(new FileResource($path));
-
         // empty file
         if (null === $content) {
             return;
@@ -75,7 +74,6 @@ public function load($file)
         // imports
         // Not supported.
         //$this->parseImports($content, $file);
-
         // parameters
         if (isset($content['parameters'])) {
             if (!is_array($content['parameters'])) {
@@ -90,7 +88,6 @@ public function load($file)
         // extensions
         // Not supported.
         //$this->loadFromExtensions($content);
-
         // services
         $this->parseDefinitions($content, $file);
     }
diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php
index b41a91d..7e03fad 100644
--- a/core/lib/Drupal/Core/DrupalKernel.php
+++ b/core/lib/Drupal/Core/DrupalKernel.php
@@ -882,7 +882,6 @@ public static function bootEnvironment() {
     // Override PHP settings required for Drupal to work properly.
     // sites/default/default.settings.php contains more runtime settings.
     // The .htaccess file contains settings that cannot be changed at runtime.
-
     // Use session cookies, not transparent sessions that puts the session id in
     // the query string.
     ini_set('session.use_cookies', '1');
diff --git a/core/lib/Drupal/Core/Entity/ContentEntityBase.php b/core/lib/Drupal/Core/Entity/ContentEntityBase.php
index b5fccbd..c19e22b 100644
--- a/core/lib/Drupal/Core/Entity/ContentEntityBase.php
+++ b/core/lib/Drupal/Core/Entity/ContentEntityBase.php
@@ -472,7 +472,6 @@ protected function getTranslatedField($name, $langcode) {
       }
       // Non-translatable fields are always stored with
       // LanguageInterface::LANGCODE_DEFAULT as key.
-
       $default = $langcode == LanguageInterface::LANGCODE_DEFAULT;
       if (!$default && !$definition->isTranslatable()) {
         if (!isset($this->fields[$name][LanguageInterface::LANGCODE_DEFAULT])) {
diff --git a/core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php b/core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php
index cfcb5fc..23e4a2b 100644
--- a/core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php
+++ b/core/lib/Drupal/Core/Entity/EntityAccessControlHandler.php
@@ -76,7 +76,6 @@ public function access(EntityInterface $entity, $operation, AccountInterface $ac
     // EntityAccessControlHandler::checkAccess(). Entities that have checks that
     // need to be done before the hook is invoked should do so by overriding
     // this method.
-
     // We grant access to the entity if both of these conditions are met:
     // - No modules say to deny access.
     // - At least one module says to grant access.
@@ -231,7 +230,6 @@ public function createAccess($entity_bundle = NULL, AccountInterface $account =
     // EntityAccessControlHandler::checkCreateAccess(). Entities that have
     // checks that need to be done before the hook is invoked should do so by
     // overriding this method.
-
     // We grant access to the entity if both of these conditions are met:
     // - No modules say to deny access.
     // - At least one module says to grant access.
diff --git a/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php b/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php
index 3ead817..4255d51 100644
--- a/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php
+++ b/core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php
@@ -312,7 +312,6 @@ protected function getChangeList() {
 
     // @todo Support deleting entity definitions when we support base field
     //   purging. See https://www.drupal.org/node/2282119.
-
     $this->entityManager->useCaches(TRUE);
 
     return array_filter($change_list);
diff --git a/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionSubscriber.php
index 4049f86..0e99946 100644
--- a/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/DefaultExceptionSubscriber.php
@@ -91,7 +91,6 @@ protected function onHtml(GetResponseForExceptionEvent $event) {
 
       if ($this->getErrorLevel() != ERROR_REPORTING_DISPLAY_VERBOSE) {
         // Without verbose logging, use a simple message.
-
         // We call SafeMarkup::format directly here, rather than use t() since
         // we are in the middle of error handling, and we don't want t() to
         // cause further errors.
@@ -99,7 +98,6 @@ protected function onHtml(GetResponseForExceptionEvent $event) {
       }
       else {
         // With verbose logging, we will also include a backtrace.
-
         $backtrace_exception = $exception;
         while ($backtrace_exception->getPrevious()) {
           $backtrace_exception = $backtrace_exception->getPrevious();
diff --git a/core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php
index 36a539d..227f31c 100644
--- a/core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/EntityRouteProviderSubscriber.php
@@ -43,7 +43,6 @@ public function onDynamicRouteEvent(RouteBuildEvent $event) {
         foreach ($this->entityManager->getRouteProviders($entity_type->id()) as $route_provider) {
           // Allow to both return an array of routes or a route collection,
           // like route_callbacks in the routing.yml file.
-
           $routes = $route_provider->getRoutes($entity_type);
           if ($routes instanceof RouteCollection) {
             $routes = $routes->all();
diff --git a/core/lib/Drupal/Core/Extension/module.api.php b/core/lib/Drupal/Core/Extension/module.api.php
index 9abea30..2439807 100644
--- a/core/lib/Drupal/Core/Extension/module.api.php
+++ b/core/lib/Drupal/Core/Extension/module.api.php
@@ -619,7 +619,6 @@ function hook_install_tasks_alter(&$tasks, $install_state) {
 function hook_update_N(&$sandbox) {
   // For non-batch updates, the signature can simply be:
   // function hook_update_N() {
-
   // Example function body for adding a field to a database table, which does
   // not require a batch operation:
   $spec = array(
@@ -725,7 +724,6 @@ function hook_post_update_NAME(&$sandbox) {
   foreach ($blocks as $block) {
     // This block has had conditions removed due to an inability to resolve
     // contexts in block_update_8001() so disable it.
-
     // Disable currently enabled blocks.
     if ($block_update_8001[$block->id()]['status']) {
       $block->setStatus(FALSE);
diff --git a/core/lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php b/core/lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
index add9cd7..db7ef13 100644
--- a/core/lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
+++ b/core/lib/Drupal/Core/Field/Plugin/Field/FieldWidget/OptionsWidgetBase.php
@@ -54,7 +54,6 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
     $element['#key_column'] = $this->column;
 
     // The rest of the $element is built by child method implementations.
-
     return $element;
   }
 
@@ -75,7 +74,6 @@ public static function validateElement(array $element, FormStateInterface $form_
     // Drupal\Core\Field\WidgetBase::submit() expects values as
     // an array of values keyed by delta first, then by column, while our
     // widgets return the opposite.
-
     if (is_array($element['#value'])) {
       $values = array_values($element['#value']);
     }
diff --git a/core/lib/Drupal/Core/Form/form.api.php b/core/lib/Drupal/Core/Form/form.api.php
index 41d1441..4ab8ecf 100644
--- a/core/lib/Drupal/Core/Form/form.api.php
+++ b/core/lib/Drupal/Core/Form/form.api.php
@@ -245,7 +245,6 @@ function hook_form_FORM_ID_alter(&$form, \Drupal\Core\Form\FormStateInterface $f
   // Modification for the form with the given form ID goes here. For example, if
   // FORM_ID is "user_register_form" this code would run only on the user
   // registration form.
-
   // Add a checkbox to registration form about agreeing to terms of use.
   $form['terms_of_use'] = array(
     '#type' => 'checkbox',
@@ -295,7 +294,6 @@ function hook_form_BASE_FORM_ID_alter(&$form, \Drupal\Core\Form\FormStateInterfa
   // Modification for the form with the given BASE_FORM_ID goes here. For
   // example, if BASE_FORM_ID is "node_form", this code would run on every
   // node form, regardless of node type.
-
   // Add a checkbox to the node form about agreeing to terms of use.
   $form['terms_of_use'] = array(
     '#type' => 'checkbox',
diff --git a/core/lib/Drupal/Core/Language/Language.php b/core/lib/Drupal/Core/Language/Language.php
index abaad81..05024f2 100644
--- a/core/lib/Drupal/Core/Language/Language.php
+++ b/core/lib/Drupal/Core/Language/Language.php
@@ -25,7 +25,6 @@ class Language implements LanguageInterface {
   );
 
   // Properties within the Language are set up as the default language.
-
   /**
    * The human readable English name.
    *
diff --git a/core/lib/Drupal/Core/Lock/LockBackendAbstract.php b/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
index 1ce9ff1..1dcdf05 100644
--- a/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
+++ b/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
@@ -36,7 +36,6 @@ public function wait($name, $delay = 30) {
     // concerns, begin waiting for 25ms, then add 25ms to the wait period each
     // time until it reaches 500ms. After this point polling will continue every
     // 500ms until $delay is reached.
-
     // $delay is passed in seconds, but we will be using usleep(), which takes
     // microseconds as a parameter. Multiply it by 1 million so that all
     // further numbers are equivalent.
diff --git a/core/lib/Drupal/Core/Menu/LocalTaskDefault.php b/core/lib/Drupal/Core/Menu/LocalTaskDefault.php
index 38534b1..d00ae7f 100644
--- a/core/lib/Drupal/Core/Menu/LocalTaskDefault.php
+++ b/core/lib/Drupal/Core/Menu/LocalTaskDefault.php
@@ -51,7 +51,6 @@ public function getRouteParameters(RouteMatchInterface $route_match) {
     // slugs in the path patterns. For example, if the route's path pattern is
     // /filter/tips/{filter_format} and the path is /filter/tips/plain_text then
     // $raw_variables->get('filter_format') == 'plain_text'.
-
     $raw_variables = $route_match->getRawParameters();
 
     foreach ($variables as $name) {
diff --git a/core/lib/Drupal/Core/Plugin/Context/ContextHandler.php b/core/lib/Drupal/Core/Plugin/Context/ContextHandler.php
index 50d8db6..8787ca5 100644
--- a/core/lib/Drupal/Core/Plugin/Context/ContextHandler.php
+++ b/core/lib/Drupal/Core/Plugin/Context/ContextHandler.php
@@ -70,7 +70,6 @@ public function applyContextMapping(ContextAwarePluginInterface $plugin, $contex
     /** @var $contexts \Drupal\Core\Plugin\Context\ContextInterface[] */
     $mappings += $plugin->getContextMapping();
     // Loop through each of the expected contexts.
-
     $missing_value = [];
 
     foreach ($plugin->getContextDefinitions() as $plugin_context_id => $plugin_context_definition) {
diff --git a/core/lib/Drupal/Core/Render/Element/HtmlTag.php b/core/lib/Drupal/Core/Render/Element/HtmlTag.php
index 1d71350..bddaa05 100644
--- a/core/lib/Drupal/Core/Render/Element/HtmlTag.php
+++ b/core/lib/Drupal/Core/Render/Element/HtmlTag.php
@@ -162,7 +162,6 @@ public static function preRenderConditionalComments($element) {
     // browsers, use either the "downlevel-hidden" or "downlevel-revealed"
     // technique. See http://wikipedia.org/wiki/Conditional_comment
     // for details.
-
     // Ensure what we are dealing with is safe.
     // This would be done later anyway in drupal_render().
     $prefix = isset($element['#prefix']) ? $element['#prefix'] : '';
diff --git a/core/lib/Drupal/Core/Render/RenderCache.php b/core/lib/Drupal/Core/Render/RenderCache.php
index 12d52e9..eacc62f 100644
--- a/core/lib/Drupal/Core/Render/RenderCache.php
+++ b/core/lib/Drupal/Core/Render/RenderCache.php
@@ -206,7 +206,6 @@ public function set(array &$elements, array $pre_bubbling_elements) {
       // towards that state by progressively merging the 'contexts' value
       // across requests. That's the strategy employed below and tested in
       // \Drupal\Tests\Core\Render\RendererBubblingTest::testConditionalCacheContextBubblingSelfHealing().
-
       // Get the cacheability of this element according to the current (stored)
       // redirecting cache item, if any.
       $redirect_cacheability = new CacheableMetadata();
diff --git a/core/lib/Drupal/Core/Render/theme.api.php b/core/lib/Drupal/Core/Render/theme.api.php
index 19a7038..81055ef 100644
--- a/core/lib/Drupal/Core/Render/theme.api.php
+++ b/core/lib/Drupal/Core/Render/theme.api.php
@@ -558,7 +558,6 @@ function hook_preprocess(&$variables, $hook) {
  static $hooks;
 
   // Add contextual links to the variables, if the user has permission.
-
   if (!\Drupal::currentUser()->hasPermission('access contextual links')) {
     return;
   }
diff --git a/core/lib/Drupal/Core/Template/TwigExtension.php b/core/lib/Drupal/Core/Template/TwigExtension.php
index 49ec546..30fa3ac 100644
--- a/core/lib/Drupal/Core/Template/TwigExtension.php
+++ b/core/lib/Drupal/Core/Template/TwigExtension.php
@@ -453,7 +453,6 @@ public function escapeFilter(\Twig_Environment $env, $arg, $strategy = 'html', $
 
     // This is a normal render array, which is safe by definition, with
     // special simple cases already handled.
-
     // Early return if this element was pre-rendered (no need to re-render).
     if (isset($arg['#printed']) && $arg['#printed'] == TRUE && isset($arg['#markup']) && strlen($arg['#markup']) > 0) {
       return $arg['#markup'];
diff --git a/core/lib/Drupal/Core/Theme/Registry.php b/core/lib/Drupal/Core/Theme/Registry.php
index 8122e89..9b4288d 100644
--- a/core/lib/Drupal/Core/Theme/Registry.php
+++ b/core/lib/Drupal/Core/Theme/Registry.php
@@ -432,7 +432,6 @@ protected function processExtension(array &$cache, $name, $type, $theme, $path)
         // $result[$hook] will only contain key/value pairs for information being
         // overridden.  Pull the rest of the information from what was defined by
         // an earlier hook.
-
         // Fill in the type and path of the module, theme, or engine that
         // implements this theme function.
         $result[$hook]['type'] = $type;
diff --git a/core/lib/Drupal/Core/Update/UpdateRegistry.php b/core/lib/Drupal/Core/Update/UpdateRegistry.php
index 239d7ac..5100a74 100644
--- a/core/lib/Drupal/Core/Update/UpdateRegistry.php
+++ b/core/lib/Drupal/Core/Update/UpdateRegistry.php
@@ -122,7 +122,6 @@ public function getPendingUpdateFunctions() {
     // We need a) the list of active modules (we get that from the config
     // bootstrap factory) and b) the path to the modules, we use the extension
     // discovery for that.
-
     $this->scanExtensionsAndLoadUpdateFiles();
 
     // First figure out which hook_{$this->updateType}_NAME got executed
diff --git a/core/modules/action/tests/src/Unit/Plugin/migrate/source/ActionTest.php b/core/modules/action/tests/src/Unit/Plugin/migrate/source/ActionTest.php
index 3ef553e..74133ab 100644
--- a/core/modules/action/tests/src/Unit/Plugin/migrate/source/ActionTest.php
+++ b/core/modules/action/tests/src/Unit/Plugin/migrate/source/ActionTest.php
@@ -25,7 +25,6 @@ class ActionTest extends MigrateSqlSourceTestCase {
   );
 
   // We need to set up the database contents; it's easier to do that below.
-
   protected $expectedResults = array(
     array(
       'aid' => 'Redirect to node list page',
diff --git a/core/modules/block/block.install b/core/modules/block/block.install
index 106815c..03e6500 100644
--- a/core/modules/block/block.install
+++ b/core/modules/block/block.install
@@ -28,12 +28,10 @@ function block_install() {
 function block_update_8001() {
   // This update function updates blocks for the change from
   // https://www.drupal.org/node/2354889.
-
   // Core visibility context plugins are updated automatically; blocks with
   // unknown plugins are disabled and their previous visibility settings are
   // saved in key value storage; see change record
   // https://www.drupal.org/node/2527840 for more explanation.
-
   // These are all the contexts that Drupal core provides.
   $context_service_id_map = [
     'node.node' => '@node.node_route_context:node',
diff --git a/core/modules/block/block.module b/core/modules/block/block.module
index 0b6ca26..5cbd4b1 100644
--- a/core/modules/block/block.module
+++ b/core/modules/block/block.module
@@ -176,7 +176,6 @@ function block_theme_suggestions_block(array $variables) {
   // contains a hyphen, it will end up as an underscore after this conversion,
   // and your function names won't be recognized. So, we need to convert
   // hyphens to underscores in block deltas for the theme suggestions.
-
   // We can safely explode on : because we know the Block plugin type manager
   // enforces that delimiter for all derivatives.
   $parts = explode(':', $variables['elements']['#plugin_id']);
diff --git a/core/modules/block/block.post_update.php b/core/modules/block/block.post_update.php
index f208f65..2a27f2f 100644
--- a/core/modules/block/block.post_update.php
+++ b/core/modules/block/block.post_update.php
@@ -41,7 +41,6 @@ function block_post_update_disable_blocks_with_missing_contexts() {
   foreach ($blocks as $block) {
     // This block has had conditions removed due to an inability to resolve
     // contexts in block_update_8001() so disable it.
-
     // Disable currently enabled blocks.
     if ($block_update_8001[$block->id()]['status']) {
       $block->setStatus(FALSE);
diff --git a/core/modules/book/src/BookManager.php b/core/modules/book/src/BookManager.php
index d95e6fa..8257142 100644
--- a/core/modules/book/src/BookManager.php
+++ b/core/modules/book/src/BookManager.php
@@ -1112,7 +1112,6 @@ public function bookSubtreeData($link) {
         // Compute the real cid for book subtree data.
         $tree_cid = 'book-links:subtree-data:' . hash('sha256', serialize($data));
         // Cache the data, if it is not already in the cache.
-
         if (!\Drupal::cache('data')->get($tree_cid)) {
           \Drupal::cache('data')->set($tree_cid, $data, Cache::PERMANENT, array('bid:' . $link['bid']));
         }
diff --git a/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorPluginManagerTest.php b/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorPluginManagerTest.php
index 92c448b..28e0a8e 100644
--- a/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorPluginManagerTest.php
+++ b/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorPluginManagerTest.php
@@ -31,7 +31,6 @@ protected function setUp() {
     parent::setUp();
 
     // Install the Filter module.
-
     // Create text format, associate CKEditor.
     $filtered_html_format = FilterFormat::create(array(
       'format' => 'filtered_html',
diff --git a/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorTest.php b/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorTest.php
index 15e56b0..4225c10 100644
--- a/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorTest.php
+++ b/core/modules/ckeditor/tests/modules/src/Kernel/CKEditorTest.php
@@ -39,7 +39,6 @@ protected function setUp() {
     parent::setUp();
 
     // Install the Filter module.
-
     // Create text format, associate CKEditor.
     $filtered_html_format = FilterFormat::create(array(
       'format' => 'filtered_html',
diff --git a/core/modules/color/color.module b/core/modules/color/color.module
index 055d750..a84fcfd 100644
--- a/core/modules/color/color.module
+++ b/core/modules/color/color.module
@@ -543,7 +543,6 @@ function _color_rewrite_stylesheet($theme, &$info, &$paths, $palette, $style) {
     }
     else {
       // Determine the most suitable base color for the next color.
-
       // 'a' declarations. Use link.
       if (preg_match('@[^a-z0-9_-](a)[^a-z0-9_-][^/{]*{[^{]+$@i', $chunk)) {
         $base = 'link';
@@ -680,7 +679,6 @@ function _color_render_images($theme, &$info, &$paths, $palette) {
 function _color_shift($given, $ref1, $ref2, $target) {
   // We assume that ref2 is a blend of ref1 and target and find
   // delta based on the length of the difference vectors.
-
   // delta = 1 - |ref2 - ref1| / |white - ref1|
   $target = _color_unpack($target, TRUE);
   $ref1 = _color_unpack($ref1, TRUE);
diff --git a/core/modules/comment/comment.module b/core/modules/comment/comment.module
index 40b4e40..73d872f 100644
--- a/core/modules/comment/comment.module
+++ b/core/modules/comment/comment.module
@@ -200,7 +200,6 @@ function comment_node_links_alter(array &$links, NodeInterface $node, array &$co
   // can do so by implementing a new field formatter.
   // @todo Make this configurable from the formatter. See
   //   https://www.drupal.org/node/1901110.
-
   $comment_links = \Drupal::service('comment.link_builder')->buildCommentedEntityLinks($node, $context);
   $links += $comment_links;
 }
diff --git a/core/modules/comment/src/CommentStorage.php b/core/modules/comment/src/CommentStorage.php
index cc4fdcf..3abedd5 100644
--- a/core/modules/comment/src/CommentStorage.php
+++ b/core/modules/comment/src/CommentStorage.php
@@ -144,7 +144,6 @@ public function getNewCommentPageNumber($total_comments, $new_comments, Fieldabl
     }
     else {
       // Threaded comments.
-
       // 1. Find all the threads with a new comment.
       $unread_threads_query = $this->database->select('comment_field_data', 'comment')
         ->fields('comment', array('thread'))
diff --git a/core/modules/comment/src/Entity/Comment.php b/core/modules/comment/src/Entity/Comment.php
index 7a659f8..12bf627 100644
--- a/core/modules/comment/src/Entity/Comment.php
+++ b/core/modules/comment/src/Entity/Comment.php
@@ -100,7 +100,6 @@ public function preSave(EntityStorageInterface $storage) {
         else {
           // This is a comment with a parent comment, so increase the part of
           // the thread value at the proper depth.
-
           // Get the parent comment:
           $parent = $this->getParentComment();
           // Strip the "/" from the end of the parent thread.
diff --git a/core/modules/comment/src/Tests/CommentPagerTest.php b/core/modules/comment/src/Tests/CommentPagerTest.php
index 760e25f..7610ac1 100644
--- a/core/modules/comment/src/Tests/CommentPagerTest.php
+++ b/core/modules/comment/src/Tests/CommentPagerTest.php
@@ -135,7 +135,6 @@ function testCommentOrderingThreading() {
     //     - 6
     // - 2
     //   - 5
-
     $this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
 
     $expected_order = array(
@@ -230,7 +229,6 @@ function testCommentNewPageIndicator() {
     //   - 3
     // - 2
     //   - 5
-
     $this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
 
     $expected_pages = array(
diff --git a/core/modules/comment/src/Tests/CommentThreadingTest.php b/core/modules/comment/src/Tests/CommentThreadingTest.php
index c8ea93e..ba1cb3f 100644
--- a/core/modules/comment/src/Tests/CommentThreadingTest.php
+++ b/core/modules/comment/src/Tests/CommentThreadingTest.php
@@ -158,7 +158,6 @@ protected function assertNoParentLink($cid) {
     // <article>
     //   <p class="parent"></p>
     //  </article>
-
     $pattern = "//a[@id='comment-$cid']/following-sibling::article//p[contains(@class, 'parent')]";
     $this->assertNoFieldByXpath($pattern, NULL, format_string(
       'Comment %cid does not have a link to a parent.',
diff --git a/core/modules/comment/src/Tests/Views/WizardTest.php b/core/modules/comment/src/Tests/Views/WizardTest.php
index 885ce2c..efb7b29 100644
--- a/core/modules/comment/src/Tests/Views/WizardTest.php
+++ b/core/modules/comment/src/Tests/Views/WizardTest.php
@@ -52,7 +52,6 @@ public function testCommentWizard() {
 
     // If we update the type first we should get a selection of comment valid
     // row plugins as the select field.
-
     $this->drupalGet('admin/structure/views/add');
     $this->drupalPostForm('admin/structure/views/add', $view, t('Update "of type" choice'));
 
diff --git a/core/modules/comment/tests/src/Unit/Migrate/d6/CommentTestBase.php b/core/modules/comment/tests/src/Unit/Migrate/d6/CommentTestBase.php
index 79bae3e..70dd5a7 100644
--- a/core/modules/comment/tests/src/Unit/Migrate/d6/CommentTestBase.php
+++ b/core/modules/comment/tests/src/Unit/Migrate/d6/CommentTestBase.php
@@ -25,7 +25,6 @@
   );
 
   // We need to set up the database contents; it's easier to do that below.
-
   protected $expectedResults = array(
     array(
       'cid' => 1,
diff --git a/core/modules/config/src/Tests/ConfigEntityTest.php b/core/modules/config/src/Tests/ConfigEntityTest.php
index 5a61382..c7d4e12 100644
--- a/core/modules/config/src/Tests/ConfigEntityTest.php
+++ b/core/modules/config/src/Tests/ConfigEntityTest.php
@@ -139,7 +139,6 @@ function testCRUD() {
 
     // Verify that a configuration entity can be saved with an ID of the
     // maximum allowed length, but not longer.
-
     // Test with a short ID.
     $id_length_config_test = entity_create('config_test', array(
       'id' => $this->randomMachineName(8),
diff --git a/core/modules/config/src/Tests/ConfigImportAllTest.php b/core/modules/config/src/Tests/ConfigImportAllTest.php
index a7623a9..214f81f 100644
--- a/core/modules/config/src/Tests/ConfigImportAllTest.php
+++ b/core/modules/config/src/Tests/ConfigImportAllTest.php
@@ -74,7 +74,6 @@ public function testInstallUninstall() {
     // Delete every field on the site so all modules can be uninstalled. For
     // example, if a comment field exists then module becomes required and can
     // not be uninstalled.
-
     $field_storages = \Drupal::entityManager()->getStorage('field_storage_config')->loadMultiple();
     \Drupal::entityManager()->getStorage('field_storage_config')->delete($field_storages);
     // Purge the data.
diff --git a/core/modules/config/src/Tests/ConfigImportUITest.php b/core/modules/config/src/Tests/ConfigImportUITest.php
index afa9b99..3c3b796 100644
--- a/core/modules/config/src/Tests/ConfigImportUITest.php
+++ b/core/modules/config/src/Tests/ConfigImportUITest.php
@@ -295,7 +295,6 @@ function testImportDiff() {
     // The following assertions do not use $this::assertEscaped() because
     // \Drupal\Component\Diff\DiffFormatter adds markup that signifies what has
     // changed.
-
     // Changed values are escaped.
     $this->assertText(Html::escape("foo: '<p><em>foobar</em></p>'"));
     $this->assertText(Html::escape("foo: '<p>foobar</p>'"));
diff --git a/core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php b/core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php
index c260e63..9eb9129 100644
--- a/core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php
+++ b/core/modules/config_translation/src/Tests/ConfigTranslationListUiTest.php
@@ -490,7 +490,6 @@ public function testTranslateOperationInListUi() {
     $this->doFieldListTest();
 
     // Views is tested in Drupal\config_translation\Tests\ConfigTranslationViewListUiTest
-
     // Test the maintenance settings page.
     $this->doSettingsPageTest('admin/config/development/maintenance');
     // Test the site information settings page.
diff --git a/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeWidgetBase.php b/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeWidgetBase.php
index df23426..2b1096e 100644
--- a/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeWidgetBase.php
+++ b/core/modules/datetime/src/Plugin/Field/FieldWidget/DateTimeWidgetBase.php
@@ -22,7 +22,6 @@ public function formElement(FieldItemListInterface $items, $delta, array $elemen
     // identifying this item in error messages. We do not want to display this
     // title because the actual title display is handled at a higher level by
     // the Field module.
-
     $element['#theme_wrappers'][] = 'datetime_wrapper';
     $element['#attributes']['class'][] = 'container-inline';
 
diff --git a/core/modules/datetime/src/Plugin/views/filter/Date.php b/core/modules/datetime/src/Plugin/views/filter/Date.php
index e53cb1c..5c48ce2 100644
--- a/core/modules/datetime/src/Plugin/views/filter/Date.php
+++ b/core/modules/datetime/src/Plugin/views/filter/Date.php
@@ -95,8 +95,6 @@ protected function opBetween($field) {
     $b = intval(strtotime($this->value['max'], $origin));
 
     // Formatting will vary on date storage.
-
-
     // Convert to ISO format and format for query. UTC timezone is used since
     // dates are stored in UTC.
     $a = $this->query->getDateFormat("'" . $this->dateFormatter->format($a, 'custom', DATETIME_DATETIME_STORAGE_FORMAT, DATETIME_STORAGE_TIMEZONE) . "'", $this->dateFormat, TRUE);
diff --git a/core/modules/editor/tests/src/Kernel/EditorManagerTest.php b/core/modules/editor/tests/src/Kernel/EditorManagerTest.php
index b6077a5..449bac5 100644
--- a/core/modules/editor/tests/src/Kernel/EditorManagerTest.php
+++ b/core/modules/editor/tests/src/Kernel/EditorManagerTest.php
@@ -31,7 +31,6 @@ protected function setUp() {
     parent::setUp();
 
     // Install the Filter module.
-
     // Add text formats.
     $filtered_html_format = FilterFormat::create(array(
       'format' => 'filtered_html',
diff --git a/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php b/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php
index 5e47c36..e43aeab 100644
--- a/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php
+++ b/core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php
@@ -67,7 +67,6 @@ protected function setUp() {
     parent::setUp();
 
     // Install the Filter module.
-
     // Create a field.
     $this->fieldName = 'field_textarea';
     $this->createFieldWithStorage(
diff --git a/core/modules/editor/tests/src/Unit/EditorXssFilter/StandardTest.php b/core/modules/editor/tests/src/Unit/EditorXssFilter/StandardTest.php
index d19758e..8c05d1f 100644
--- a/core/modules/editor/tests/src/Unit/EditorXssFilter/StandardTest.php
+++ b/core/modules/editor/tests/src/Unit/EditorXssFilter/StandardTest.php
@@ -56,7 +56,6 @@ public function providerTestFilterXss() {
     $data[] = array('<p>Hello, world!</p><unknown>Pink Fairy Armadillo</unknown><a href="javascript:alert(1)">test</a>', '<p>Hello, world!</p><unknown>Pink Fairy Armadillo</unknown><a href="alert(1)">test</a>');
 
     // All cases listed on https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet
-
     // No Filter Evasion.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#No_Filter_Evasion
     $data[] = array('<SCRIPT SRC=http://ha.ckers.org/xss.js></SCRIPT>', '');
@@ -178,7 +177,6 @@ public function providerTestFilterXss() {
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Escaping_JavaScript_escapes
     // This one is irrelevant for Drupal; we *never* output any JavaScript code
     // that depends on the URL's query string.
-
     // End title tag.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#End_title_tag
     $data[] = array('</TITLE><SCRIPT>alert("XSS");</SCRIPT>', '</TITLE>alert("XSS");');
@@ -390,7 +388,6 @@ public function providerTestFilterXss() {
     // US-ASCII encoding.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#US-ASCII_encoding
     // This one is irrelevant for Drupal; Drupal *always* outputs UTF-8.
-
     // META.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#META
     $data[] = array('<META HTTP-EQUIV="refresh" CONTENT="0;url=javascript:alert(\'XSS\');">', '<META http-equiv="refresh" content="alert(&#039;XSS&#039;);">');
@@ -469,7 +466,6 @@ public function providerTestFilterXss() {
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Locally_hosted_XML_with_embedded_JavaScript_that_is_generated_using_an_XML_data_island
     // This one is irrelevant for Drupal; Drupal disallows XML uploads by
     // default.
-
     // HTML+TIME in XML.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#HTML.2BTIME_in_XML
     $data[] = array('<?xml:namespace prefix="t" ns="urn:schemas-microsoft-com:time"><?import namespace="t" implementation="#default#time2"><t:set attributeName="innerHTML" to="XSS<SCRIPT DEFER>alert("XSS")</SCRIPT>">', '&lt;?xml:namespace prefix="t" ns="urn:schemas-microsoft-com:time"&gt;&lt;?import namespace="t" implementation="#default#time2"&gt;<t set attributename="innerHTML">alert("XSS")"&gt;');
@@ -482,7 +478,6 @@ public function providerTestFilterXss() {
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#IMG_Embedded_commands
     // This one is irrelevant for Drupal; this is actually a CSRF, for which
     // Drupal has CSRF protection. See https://www.drupal.org/node/178896.
-
     // Cookie manipulation.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#Cookie_manipulation
     $data[] = array('<META HTTP-EQUIV="Set-Cookie" Content="USERID=<SCRIPT>alert(\'XSS\')</SCRIPT>">', '<META http-equiv="Set-Cookie">alert(\'XSS\')"&gt;');
@@ -490,7 +485,6 @@ public function providerTestFilterXss() {
     // UTF-7 encoding.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#UTF-7_encoding
     // This one is irrelevant for Drupal; Drupal *always* outputs UTF-8.
-
     // XSS using HTML quote encapsulation.
     // @see https://www.owasp.org/index.php/XSS_Filter_Evasion_Cheat_Sheet#XSS_using_HTML_quote_encapsulation
     $data[] = array('<SCRIPT a=">" SRC="http://ha.ckers.org/xss.js"></SCRIPT>', '" SRC="http://ha.ckers.org/xss.js"&gt;');
@@ -506,7 +500,6 @@ public function providerTestFilterXss() {
     // This one is irrelevant for Drupal; Drupal doesn't forbid linking to some
     // sites, it only forbids linking to any protocols other than those that are
     // whitelisted.
-
     // Test XSS filtering on data-attributes.
     // @see \Drupal\editor\EditorXssFilter::filterXssDataAttributes()
 
diff --git a/core/modules/field/field.module b/core/modules/field/field.module
index 51b82e9..740861c 100644
--- a/core/modules/field/field.module
+++ b/core/modules/field/field.module
@@ -228,7 +228,6 @@ function field_entity_bundle_delete($entity_type_id, $bundle) {
   // \Drupal\Core\Field\Plugin\Field\FieldType\EntityReferenceItem::onDependencyRemoval()
   // because we need to take into account bundles that are not provided by a
   // config entity type so they are not part of the config dependencies.
-
   // Gather a list of all entity reference fields.
   $map = \Drupal::entityManager()->getFieldMapByFieldType('entity_reference');
   $ids = [];
diff --git a/core/modules/field/src/Tests/EntityReference/EntityReferenceAutoCreateTest.php b/core/modules/field/src/Tests/EntityReference/EntityReferenceAutoCreateTest.php
index 0f35fde..3bbe593 100644
--- a/core/modules/field/src/Tests/EntityReference/EntityReferenceAutoCreateTest.php
+++ b/core/modules/field/src/Tests/EntityReference/EntityReferenceAutoCreateTest.php
@@ -210,7 +210,6 @@ public function testMultipleTargetBundles() {
 
     // @todo Re-enable this test when WebTestBase::curlHeaderCallback() provides
     //   a way to catch and assert user-triggered errors.
-
     // Test the case when the field config settings are inconsistent.
     //unset($handler_settings['auto_create_bundle']);
     //$field_config->setSetting('handler_settings', $handler_settings);
diff --git a/core/modules/field/src/Tests/FormTest.php b/core/modules/field/src/Tests/FormTest.php
index 51c80b3..504f7d6 100644
--- a/core/modules/field/src/Tests/FormTest.php
+++ b/core/modules/field/src/Tests/FormTest.php
@@ -120,7 +120,6 @@ function testFieldFormSingle() {
     $this->drupalPostForm(NULL, $edit, t('Save'));
     $this->assertRaw(t('%name does not accept the value -1.', array('%name' => $this->field['label'])), 'Field validation fails with invalid input.');
     // TODO : check that the correct field is flagged for error.
-
     // Create an entity
     $value = mt_rand(1, 127);
     $edit = array(
@@ -237,7 +236,6 @@ function testFieldFormSingleRequired() {
 //    FieldStorageConfig::create($this->field)->save();
 //    FieldConfig::create($this->instance)->save();
 //  }
-
   function testFieldFormUnlimited() {
     $field_storage = $this->fieldStorageUnlimited;
     $field_name = $field_storage['field_name'];
@@ -263,7 +261,6 @@ function testFieldFormUnlimited() {
     $this->assertFieldByName("{$field_name}[1][value]", '', 'New widget is displayed');
     $this->assertNoField("{$field_name}[2][value]", 'No extraneous widget is displayed');
     // TODO : check that non-field inputs are preserved ('title'), etc.
-
     // Yet another time so that we can play with more values -> 3 widgets.
     $this->drupalPostForm(NULL, array(), t('Add another item'));
 
@@ -317,7 +314,6 @@ function testFieldFormUnlimited() {
     // value in the middle.
     // Submit: check that the entity is updated with correct values
     // Re-submit: check that the field can be emptied.
-
     // Test with several multiple fields in a form
   }
 
@@ -602,7 +598,6 @@ function testHiddenField() {
     $this->field->save();
     // We explicitly do not assign a widget in a form display, so the field
     // stays hidden in forms.
-
     // Display the entity creation form.
     $this->drupalGet($entity_type . '/add');
 
diff --git a/core/modules/field/src/Tests/String/StringFieldTest.php b/core/modules/field/src/Tests/String/StringFieldTest.php
index 9284426..64671a9 100644
--- a/core/modules/field/src/Tests/String/StringFieldTest.php
+++ b/core/modules/field/src/Tests/String/StringFieldTest.php
@@ -36,7 +36,6 @@ protected function setUp() {
   }
 
   // Test fields.
-
   /**
    * Test widgets.
    */
diff --git a/core/modules/field/tests/src/Kernel/FieldCrudTest.php b/core/modules/field/tests/src/Kernel/FieldCrudTest.php
index 6f6a285..a462eee 100644
--- a/core/modules/field/tests/src/Kernel/FieldCrudTest.php
+++ b/core/modules/field/tests/src/Kernel/FieldCrudTest.php
@@ -59,7 +59,6 @@ function setUp() {
   // - a minimal $field structure, check all default values are set
   // defer actual $field comparison to a helper function, used for the two cases above,
   // and for testUpdateField
-
   /**
    * Test the creation of a field.
    */
@@ -213,7 +212,6 @@ function testDeleteField() {
     // TODO: Test deletion of the data stored in the field also.
     // Need to check that data for a 'deleted' field / storage doesn't get loaded
     // Need to check data marked deleted is cleaned on cron (not implemented yet...)
-
     // Create two fields for the same field storage so we can test that only one
     // is deleted.
     FieldConfig::create($this->fieldDefinition)->save();
diff --git a/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php b/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php
index 220aa46..13040bd 100644
--- a/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php
+++ b/core/modules/field/tests/src/Kernel/FieldImportDeleteTest.php
@@ -36,7 +36,6 @@ public function testImportDelete() {
     // - field.field.entity_test.entity_test.field_test_import
     // - field.field.entity_test.entity_test.field_test_import_2
     // - field.field.entity_test.test_bundle.field_test_import_2
-
     $field_name = 'field_test_import';
     $field_storage_id = "entity_test.$field_name";
     $field_name_2 = 'field_test_import_2';
diff --git a/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php b/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php
index da1948c..415d7d7 100644
--- a/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php
+++ b/core/modules/field/tests/src/Kernel/FieldStorageCrudTest.php
@@ -27,7 +27,6 @@ class FieldStorageCrudTest extends FieldKernelTestBase {
   // - a full fledged $field structure, check that all the values are there
   // - a minimal $field structure, check all default values are set
   // defer actual $field comparison to a helper function, used for the two cases above
-
   /**
    * Test the creation of a field storage.
    */
@@ -286,7 +285,6 @@ function testIndexes() {
    */
   function testDelete() {
     // TODO: Also test deletion of the data stored in the field ?
-
     // Create two fields (so we can test that only one is deleted).
     $field_storage_definition = array(
       'field_name' => 'field_1',
diff --git a/core/modules/file/src/FileViewsData.php b/core/modules/file/src/FileViewsData.php
index cf24062..d35f7ee 100644
--- a/core/modules/file/src/FileViewsData.php
+++ b/core/modules/file/src/FileViewsData.php
@@ -111,7 +111,6 @@ public function getViewsData() {
     // relationships are type-restricted in the joins declared above, and
     // file->entity relationships are type-restricted in the relationship
     // declarations below.
-
     // Describes relationships between files and nodes.
     $data['file_usage']['file_to_node'] = array(
       'title' => $this->t('Content'),
diff --git a/core/modules/file/src/Tests/DownloadTest.php b/core/modules/file/src/Tests/DownloadTest.php
index 745743c..a9a6d05 100644
--- a/core/modules/file/src/Tests/DownloadTest.php
+++ b/core/modules/file/src/Tests/DownloadTest.php
@@ -49,7 +49,6 @@ public function testPrivateFileTransferWithoutPageCache() {
    */
   protected function doPrivateFileTransferTest() {
     // Set file downloads to private so handler functions get called.
-
     // Create a file.
     $contents = $this->randomMachineName(8);
     $file = $this->createFile(NULL, $contents, 'private');
diff --git a/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php b/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php
index 4b3684b..44dc16d 100644
--- a/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php
+++ b/core/modules/filter/tests/src/Kernel/FilterDefaultConfigTest.php
@@ -19,7 +19,6 @@ protected function setUp() {
 
     // Drupal\filter\FilterPermissions::permissions() builds a URL to output
     // a link in the description.
-
     $this->installEntitySchema('user');
 
     // Install filter_test module, which ships with custom default format.
diff --git a/core/modules/filter/tests/src/Kernel/FilterUnitTest.php b/core/modules/filter/tests/src/Kernel/FilterUnitTest.php
index c4744bb..e45ea76 100644
--- a/core/modules/filter/tests/src/Kernel/FilterUnitTest.php
+++ b/core/modules/filter/tests/src/Kernel/FilterUnitTest.php
@@ -555,7 +555,6 @@ function testUrlFilter() {
     // @todo Possible categories:
     // - absolute, mail, partial
     // - characters/encoding, surrounding markup, security
-
     // Create a email that is too long.
     $long_email = str_repeat('a', 254) . '@example.com';
     $too_long_email = str_repeat('b', 255) . '@example.com';
diff --git a/core/modules/history/history.views.inc b/core/modules/history/history.views.inc
index 4b98136..9d6bea8 100644
--- a/core/modules/history/history.views.inc
+++ b/core/modules/history/history.views.inc
@@ -10,7 +10,6 @@
  */
 function history_views_data() {
   // History table
-
   // We're actually defining a specific instance of the table, so let's
   // alias it so that we can later add the real table for other purposes if we
   // need it.
diff --git a/core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php b/core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php
index 5803c92..6aeeb37 100644
--- a/core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php
+++ b/core/modules/history/src/Plugin/views/filter/HistoryUserTimestamp.php
@@ -70,7 +70,6 @@ public function query() {
 
     // Hey, Drupal kills old history, so nodes that haven't been updated
     // since HISTORY_READ_LIMIT are bzzzzzzzt outta here!
-
     $limit = REQUEST_TIME - HISTORY_READ_LIMIT;
 
     $this->ensureMyTable();
diff --git a/core/modules/image/src/Tests/ImageAdminStylesTest.php b/core/modules/image/src/Tests/ImageAdminStylesTest.php
index 4b7ff43..6cc8838 100644
--- a/core/modules/image/src/Tests/ImageAdminStylesTest.php
+++ b/core/modules/image/src/Tests/ImageAdminStylesTest.php
@@ -97,7 +97,6 @@ function testStyle() {
     );
 
     // Add style form.
-
     $edit = array(
       'name' => $style_name,
       'label' => $style_label,
@@ -112,7 +111,6 @@ function testStyle() {
     $this->assertLinkByHref($style_path . '/delete');
 
     // Add effect form.
-
     // Add each sample effect to the style.
     foreach ($effect_edits as $effect => $edit) {
       $edit_data = array();
@@ -161,7 +159,6 @@ function testStyle() {
     }
 
     // Image style overview form (ordering and renaming).
-
     // Confirm the order of effects is maintained according to the order we
     // added the fields.
     $effect_edits_order = array_keys($effect_edits);
@@ -224,7 +221,6 @@ function testStyle() {
     $this->assertTrue($order_correct, 'The order of the effects is correctly set by default.');
 
     // Image effect deletion form.
-
     // Create an image to make sure it gets flushed after deleting an effect.
     $image_path = $this->createSampleImage($style);
     $this->assertEqual($this->getImageCount($style), 1, format_string('Image style %style image %file successfully generated.', array('%style' => $style->label(), '%file' => $image_path)));
@@ -261,7 +257,6 @@ function testStyle() {
     $this->assertEqual(count($style->getEffects()), 6, 'Rotate effect with transparent background was added.');
 
     // Style deletion form.
-
     // Delete the style.
     $this->drupalPostForm($style_path . '/delete', array(), t('Delete'));
 
@@ -272,7 +267,6 @@ function testStyle() {
     $this->assertFalse(ImageStyle::load($style_name), format_string('Image style %style successfully deleted.', array('%style' => $style->label())));
 
     // Test empty text when there are no image styles.
-
     // Delete all image styles.
     foreach (ImageStyle::loadMultiple() as $image_style) {
       $image_style->delete();
diff --git a/core/modules/image/src/Tests/ImageFieldDisplayTest.php b/core/modules/image/src/Tests/ImageFieldDisplayTest.php
index 666a791..f09b7db 100644
--- a/core/modules/image/src/Tests/ImageFieldDisplayTest.php
+++ b/core/modules/image/src/Tests/ImageFieldDisplayTest.php
@@ -239,7 +239,6 @@ function testImageFieldSettings() {
 
     // We have to create the article first and then edit it because the alt
     // and title fields do not display until the image has been attached.
-
     // Create alt text for the image.
     $alt = $this->randomMachineName();
 
@@ -372,7 +371,6 @@ function testImageFieldDefaultImage() {
 
     // Create a node with an image attached and ensure that the default image
     // is not displayed.
-
     // Create alt text for the image.
     $alt = $this->randomMachineName();
 
diff --git a/core/modules/language/src/LanguageNegotiator.php b/core/modules/language/src/LanguageNegotiator.php
index 3257567..8e4aad7 100644
--- a/core/modules/language/src/LanguageNegotiator.php
+++ b/core/modules/language/src/LanguageNegotiator.php
@@ -326,13 +326,11 @@ function updateConfiguration(array $types) {
         // settings are always considered non-configurable. In turn if default
         // settings are missing, the language type is always considered
         // configurable.
-
         // If the language type is locked we can just store its default language
         // negotiation settings if it has some, since it is not configurable.
         if ($has_default_settings) {
           $method_weights = array();
           // Default settings are in $info['fixed'].
-
           foreach ($info['fixed'] as $weight => $method_id) {
             if (isset($method_definitions[$method_id])) {
               $method_weights[$method_id] = $weight;
diff --git a/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationContentEntity.php b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationContentEntity.php
index 53d80c8..c9faa31d 100644
--- a/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationContentEntity.php
+++ b/core/modules/language/src/Plugin/LanguageNegotiation/LanguageNegotiationContentEntity.php
@@ -104,7 +104,6 @@ public function processOutbound($path, &$options = [], Request $request = NULL,
     // If appropriate, process outbound to add a query parameter to the url and
     // remove the language option, so that url negotiator does not rewrite the
     // url.
-
     // First, check if processing conditions are met.
     if (!($request && !empty($options['route']) && $this->hasLowerLanguageNegotiationWeight() && $this->meetsContentEntityRoutesCondition($options['route'], $request))) {
       return $path;
diff --git a/core/modules/language/src/Tests/LanguageListTest.php b/core/modules/language/src/Tests/LanguageListTest.php
index 25de99c..81096df 100644
--- a/core/modules/language/src/Tests/LanguageListTest.php
+++ b/core/modules/language/src/Tests/LanguageListTest.php
@@ -136,7 +136,6 @@ function testLanguageList() {
     $this->drupalGet('admin/config/regional/language/delete/fr');
     $this->assertResponse(404, 'Language no longer found.');
     // Make sure the "language_count" state has not changed.
-
     // Ensure we can delete the English language. Right now English is the only
     // language so we must add a new language and make it the default before
     // deleting English.
diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module
index aecad6c..c08ce80 100644
--- a/core/modules/locale/locale.module
+++ b/core/modules/locale/locale.module
@@ -920,7 +920,6 @@ function locale_translation_status_save($project, $langcode, $type, $data) {
   // Follow-up issue: https://www.drupal.org/node/1842362.
   // Split status storage per module/language and expire individually. This will
   // improve performance for large sites.
-
   // Load the translation status or build it if not already available.
   module_load_include('translation.inc', 'locale');
   $status = locale_translation_get_status();
@@ -1366,7 +1365,6 @@ function _locale_rebuild_js($langcode = NULL) {
       $logger->warning('JavaScript translation file %file.js was lost.', array('%file' => $locale_javascripts[$language->getId()]));
       // Proceed to the 'created' case as the JavaScript translation file has
       // been created again.
-
     case 'created':
       $logger->notice('Created JavaScript translation file for the language %language.', array('%language' => $language->getName()));
       return TRUE;
diff --git a/core/modules/locale/locale.translation.inc b/core/modules/locale/locale.translation.inc
index 0383aaf..29fb0e9 100644
--- a/core/modules/locale/locale.translation.inc
+++ b/core/modules/locale/locale.translation.inc
@@ -229,7 +229,6 @@ function locale_translation_source_build($project, $langcode, $filename = NULL)
   // Follow-up issue: https://www.drupal.org/node/1842380.
   // Convert $source object to a TranslatableProject class and use a typed class
   // for $source-file.
-
   // Create a source object with data of the project object.
   $source = clone $project;
   $source->project = $project->name;
diff --git a/core/modules/locale/src/Tests/LocaleTranslationUiTest.php b/core/modules/locale/src/Tests/LocaleTranslationUiTest.php
index 1f790b6..32977d0 100644
--- a/core/modules/locale/src/Tests/LocaleTranslationUiTest.php
+++ b/core/modules/locale/src/Tests/LocaleTranslationUiTest.php
@@ -229,7 +229,6 @@ public function testJavaScriptTranslation() {
     $this->container->get('language_manager')->reset();
 
     // Build the JavaScript translation file.
-
     // Retrieve the source string of the first string available in the
     // {locales_source} table and translate it.
     $query = db_select('locales_source', 's');
@@ -307,7 +306,6 @@ public function testStringValidation() {
     );
     $this->drupalPostForm('admin/config/regional/translate', $search, t('Filter'));
     // Find the edit path.
-
     $textarea = current($this->xpath('//textarea'));
     $lid = (string) $textarea[0]['name'];
     foreach ($bad_translations as $translation) {
diff --git a/core/modules/menu_ui/src/Tests/MenuTest.php b/core/modules/menu_ui/src/Tests/MenuTest.php
index 45bf16f..4660e68 100644
--- a/core/modules/menu_ui/src/Tests/MenuTest.php
+++ b/core/modules/menu_ui/src/Tests/MenuTest.php
@@ -308,7 +308,6 @@ function doMenuTests() {
     // - item1
     // -- item2
     // --- item3
-
     $this->assertMenuLink($item1->getPluginId(), array(
       'children' => array($item2->getPluginId(), $item3->getPluginId()),
       'parents' => array($item1->getPluginId()),
@@ -348,7 +347,6 @@ function doMenuTests() {
     // - item4
     // -- item5
     // -- item6
-
     $this->assertMenuLink($item4->getPluginId(), array(
       'children' => array($item5->getPluginId(), $item6->getPluginId()),
       'parents' => array($item4->getPluginId()),
@@ -388,7 +386,6 @@ function doMenuTests() {
     // --- item2
     // ---- item3
     // -- item6
-
     $this->assertMenuLink($item1->getPluginId(), array(
       'children' => array(),
       'parents' => array($item1->getPluginId()),
diff --git a/core/modules/node/node.api.php b/core/modules/node/node.api.php
index 11689c3..f80e7f7 100644
--- a/core/modules/node/node.api.php
+++ b/core/modules/node/node.api.php
@@ -272,7 +272,6 @@ function hook_node_grants_alter(&$grants, \Drupal\Core\Session\AccountInterface
   // content. Since some other node access modules might allow this
   // permission, we expressly remove it by returning an empty $grants
   // array for roles specified in our variable setting.
-
   // Get our list of banned roles.
   $restricted = \Drupal::config('example.settings')->get('restricted_roles');
 
diff --git a/core/modules/node/node.tokens.inc b/core/modules/node/node.tokens.inc
index 81fa3f0..c9cb445 100644
--- a/core/modules/node/node.tokens.inc
+++ b/core/modules/node/node.tokens.inc
@@ -140,7 +140,6 @@ function node_tokens($type, $tokens, array $data, array $options, BubbleableMeta
               // A summary was requested.
               if ($name == 'summary') {
                 // Generate an optionally trimmed summary of the body field.
-
                 // Get the 'trim_length' size used for the 'teaser' mode, if
                 // present, or use the default trim_length size.
                 $display_options = entity_get_display('node', $node->getType(), 'teaser')->getComponent('body');
diff --git a/core/modules/node/src/NodeForm.php b/core/modules/node/src/NodeForm.php
index 0e0f1a9..a389507 100644
--- a/core/modules/node/src/NodeForm.php
+++ b/core/modules/node/src/NodeForm.php
@@ -248,7 +248,6 @@ protected function actions(array $form, FormStateInterface $form_state) {
       // 1     | 0           » unpublish & Save and publish          & Save as unpublished
       // 0     | 1           » publish   & Save and keep published   & Save and unpublish
       // 0     | 0           » unpublish & Save and keep unpublished & Save and publish
-
       // Add a "Publish" button.
       $element['publish'] = $element['submit'];
       // If the "Publish" button is clicked, we want to update the status to "published".
diff --git a/core/modules/node/src/NodeViewsData.php b/core/modules/node/src/NodeViewsData.php
index 21e1e44..35dcde6 100644
--- a/core/modules/node/src/NodeViewsData.php
+++ b/core/modules/node/src/NodeViewsData.php
@@ -75,7 +75,6 @@ public function getViewsData() {
     );
 
     // Bogus fields for aliasing purposes.
-
     // @todo Add similar support to any date field
     // @see https://www.drupal.org/node/2337507
     $data['node_field_data']['created_fulldate'] = array(
diff --git a/core/modules/node/src/Plugin/Search/NodeSearch.php b/core/modules/node/src/Plugin/Search/NodeSearch.php
index 3bf7ced..a0b1ece 100644
--- a/core/modules/node/src/Plugin/Search/NodeSearch.php
+++ b/core/modules/node/src/Plugin/Search/NodeSearch.php
@@ -717,7 +717,6 @@ protected function parseAdvancedDefaults($f, $keys) {
     }
 
     // Split out the negative, phrase, and OR parts of keywords.
-
     // For phrases, the form only supports one phrase.
     $matches = array();
     $keys = ' ' . $keys . ' ';
diff --git a/core/modules/node/src/Plugin/views/row/Rss.php b/core/modules/node/src/Plugin/views/row/Rss.php
index c2a5f0a..5e4b0f8 100644
--- a/core/modules/node/src/Plugin/views/row/Rss.php
+++ b/core/modules/node/src/Plugin/views/row/Rss.php
@@ -123,7 +123,6 @@ public function render($row) {
 
     // The node gets built and modules add to or modify $node->rss_elements
     // and $node->rss_namespaces.
-
     $build_mode = $display_mode;
 
     $build = node_view($node, $build_mode);
diff --git a/core/modules/node/src/Plugin/views/wizard/Node.php b/core/modules/node/src/Plugin/views/wizard/Node.php
index 833b092..ca6682a 100644
--- a/core/modules/node/src/Plugin/views/wizard/Node.php
+++ b/core/modules/node/src/Plugin/views/wizard/Node.php
@@ -199,7 +199,6 @@ protected function buildFilters(&$form, FormStateInterface $form_state) {
     }
 
     // Add the "tagged with" filter to the view.
-
     // We construct this filter using taxonomy_index.tid (which limits the
     // filtering to a specific vocabulary) rather than
     // taxonomy_term_field_data.name (which matches terms in any vocabulary).
@@ -207,12 +206,10 @@ protected function buildFilters(&$form, FormStateInterface $form_state) {
     // the autocomplete UI, and also to avoid confusion with other vocabularies
     // on the site that may have terms with the same name but are not used for
     // free tagging.
-
     // The downside is that if there *is* more than one vocabulary on the site
     // that is used for free tagging, the wizard will only be able to make the
     // "tagged with" filter apply to one of them (see below for the method it
     // uses to choose).
-
     // Find all "tag-like" taxonomy fields associated with the view's
     // entities. If a particular entity type (i.e., bundle) has been
     // selected above, then we only search for taxonomy fields associated
diff --git a/core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php b/core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php
index acf9217..fd3f305 100644
--- a/core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php
+++ b/core/modules/node/src/Tests/NodeAccessLanguageAwareCombinationTest.php
@@ -93,7 +93,6 @@ protected function setUp() {
     // implemented by one or both modules to enforce that private nodes or
     // translations are always private, but we want to test the default,
     // additive behavior of node access).
-
     // Create six Hungarian nodes with Catalan translations:
     // 1. One public with neither language marked as private.
     // 2. One private with neither language marked as private.
@@ -251,7 +250,6 @@ function testNodeAccessLanguageAwareCombination() {
     $this->assertNodeAccess($expected_node_access_no_access, $this->nodes['private_no_language_public'], $this->webUser);
 
     // Query the node table with the node access tag in several languages.
-
     // Query with no language specified. The fallback (hu or und) will be used.
     $select = db_select('node', 'n')
     ->fields('n', array('nid'))
diff --git a/core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php b/core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php
index ea5a883..9b24daf 100644
--- a/core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php
+++ b/core/modules/node/src/Tests/NodeAccessLanguageAwareTest.php
@@ -85,7 +85,6 @@ protected function setUp() {
 
     // The node_access_test_language module allows individual translations of a
     // node to be marked private (not viewable by normal users).
-
     // Create six nodes:
     // 1. Four Hungarian nodes with Catalan translations
     //   - One with neither language marked as private.
@@ -192,7 +191,6 @@ function testNodeAccessLanguageAware() {
     $this->assertNodeAccess($expected_node_access, $this->nodes['no_language_public'], $this->webUser);
 
     // Query the node table with the node access tag in several languages.
-
     // Query with no language specified. The fallback (hu) will be used.
     $select = db_select('node', 'n')
     ->fields('n', array('nid'))
diff --git a/core/modules/node/tests/src/Unit/Plugin/migrate/source/d6/NodeByNodeTypeTest.php b/core/modules/node/tests/src/Unit/Plugin/migrate/source/d6/NodeByNodeTypeTest.php
index 0c31810..689a42f 100644
--- a/core/modules/node/tests/src/Unit/Plugin/migrate/source/d6/NodeByNodeTypeTest.php
+++ b/core/modules/node/tests/src/Unit/Plugin/migrate/source/d6/NodeByNodeTypeTest.php
@@ -111,7 +111,6 @@ protected function setUp() {
     );
 
     // Add another row with an article node and make sure it is not migrated.
-
     foreach ($database_contents as $k => $row) {
       foreach (array('nid', 'vid', 'title', 'uid', 'body', 'teaser', 'format', 'timestamp', 'log') as $field) {
         $this->databaseContents['node_revisions'][$k][$field] = $row[$field];
diff --git a/core/modules/options/src/Tests/OptionsWidgetsTest.php b/core/modules/options/src/Tests/OptionsWidgetsTest.php
index 23f0f0d..4cb55d5 100644
--- a/core/modules/options/src/Tests/OptionsWidgetsTest.php
+++ b/core/modules/options/src/Tests/OptionsWidgetsTest.php
@@ -296,7 +296,6 @@ function testSelectListSingle() {
     $this->assertFieldValues($entity_init, 'card_1', array());
 
     // Test optgroups.
-
     $this->card1->setSetting('allowed_values', []);
     $this->card1->setSetting('allowed_values_function', 'options_test_allowed_values_callback');
     $this->card1->save();
@@ -392,7 +391,6 @@ function testSelectListMultiple() {
     $this->assertFieldValues($entity_init, 'card_2', array());
 
     // Test the 'None' option.
-
     // Check that the 'none' option has no effect if actual options are selected
     // as well.
     $edit = array('card_2[]' => array('_none' => '_none', 0 => 0));
@@ -412,9 +410,7 @@ function testSelectListMultiple() {
 
     // We do not have to test that a required select list with one option is
     // auto-selected because the browser does it for us.
-
     // Test optgroups.
-
     // Use a callback function defining optgroups.
     $this->card2->setSetting('allowed_values', []);
     $this->card2->setSetting('allowed_values_function', 'options_test_allowed_values_callback');
diff --git a/core/modules/rdf/src/Tests/StandardProfileTest.php b/core/modules/rdf/src/Tests/StandardProfileTest.php
index 1c72d71..342e7c4 100644
--- a/core/modules/rdf/src/Tests/StandardProfileTest.php
+++ b/core/modules/rdf/src/Tests/StandardProfileTest.php
@@ -408,7 +408,6 @@ protected function assertRdfaArticleProperties($graph, $message_prefix) {
     // Tag type.
     // @todo Enable with https://www.drupal.org/node/2072791.
     //$this->assertEqual($graph->type($this->termUri), 'schema:Thing', 'Tag type was found (schema:Thing).');
-
     // Tag name.
     $expected_value = array(
       'type' => 'literal',
diff --git a/core/modules/rest/src/Tests/Views/StyleSerializerTest.php b/core/modules/rest/src/Tests/Views/StyleSerializerTest.php
index f642d2d..7b04486 100644
--- a/core/modules/rest/src/Tests/Views/StyleSerializerTest.php
+++ b/core/modules/rest/src/Tests/Views/StyleSerializerTest.php
@@ -82,7 +82,6 @@ public function testSerializerResponses() {
     $this->assertCacheContexts(['languages:language_interface', 'theme', 'request_format']);
     // @todo Due to https://www.drupal.org/node/2352009 we can't yet test the
     // propagation of cache max-age.
-
     // Test the http Content-type.
     $headers = $this->drupalGetHeaders();
     $this->assertEqual($headers['content-type'], 'application/json', 'The header Content-type is correct.');
diff --git a/core/modules/search/search.module b/core/modules/search/search.module
index 0bd22ab..eb40029 100644
--- a/core/modules/search/search.module
+++ b/core/modules/search/search.module
@@ -444,7 +444,6 @@ function search_index($type, $sid, $langcode, $text) {
   $split = preg_split('/\s*<([^>]+?)>\s*/', $text, -1, PREG_SPLIT_DELIM_CAPTURE);
   // Note: PHP ensures the array consists of alternating delimiters and literals
   // and begins and ends with a literal (inserting $null as required).
-
   $tag = FALSE; // Odd/even counter. Tag or no tag.
   $score = 1; // Starting score per word
   $accum = ' '; // Accumulator for cleaned up data
diff --git a/core/modules/search/src/Tests/SearchCommentTest.php b/core/modules/search/src/Tests/SearchCommentTest.php
index acce26e..fde4d29 100644
--- a/core/modules/search/src/Tests/SearchCommentTest.php
+++ b/core/modules/search/src/Tests/SearchCommentTest.php
@@ -194,7 +194,6 @@ function testSearchResultsComment() {
 
     // @todo Verify the actual search results.
     //   https://www.drupal.org/node/2551135
-
     // Verify there is no script tag in search results.
     $this->assertNoRaw('<script>');
 
diff --git a/core/modules/search/src/Tests/SearchMultilingualEntityTest.php b/core/modules/search/src/Tests/SearchMultilingualEntityTest.php
index efbf7d9..8855974 100644
--- a/core/modules/search/src/Tests/SearchMultilingualEntityTest.php
+++ b/core/modules/search/src/Tests/SearchMultilingualEntityTest.php
@@ -151,7 +151,6 @@ function testMultilingualSearch() {
     search_update_totals();
 
     // Test search results.
-
     // This should find two results for the second and third node.
     $this->plugin->setSearch('English OR Hungarian', array(), array());
     $search_result = $this->plugin->execute();
diff --git a/core/modules/search/src/Tests/SearchTokenizerTest.php b/core/modules/search/src/Tests/SearchTokenizerTest.php
index fd410c9..bb9b19c 100644
--- a/core/modules/search/src/Tests/SearchTokenizerTest.php
+++ b/core/modules/search/src/Tests/SearchTokenizerTest.php
@@ -29,7 +29,6 @@ function testTokenizer() {
 
     // Create a string of CJK characters from various character ranges in
     // the Unicode tables.
-
     // Beginnings of the character ranges.
     $starts = array(
       'CJK unified' => 0x4e00,
diff --git a/core/modules/simpletest/src/InstallerTestBase.php b/core/modules/simpletest/src/InstallerTestBase.php
index cf550ac..660db38 100644
--- a/core/modules/simpletest/src/InstallerTestBase.php
+++ b/core/modules/simpletest/src/InstallerTestBase.php
@@ -126,7 +126,6 @@ protected function setUp() {
 
     // @todo Allow test classes based on this class to act on further installer
     //   screens.
-
     // Configure site.
     $this->setUpSite();
 
diff --git a/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php b/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php
index 7ec9e19..508173e 100644
--- a/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php
+++ b/core/modules/simpletest/src/Tests/SimpleTestBrowserTest.php
@@ -124,7 +124,6 @@ public function testTestingThroughUI() {
     // We can not test WebTestBase tests here since they require a valid .htkey
     // to be created. However this scenario is covered by the testception of
     // \Drupal\simpletest\Tests\SimpleTestTest.
-
     $tests = array(
       // A KernelTestBase test.
       'Drupal\system\Tests\DrupalKernel\DrupalKernelTest',
diff --git a/core/modules/simpletest/src/Tests/SimpleTestTest.php b/core/modules/simpletest/src/Tests/SimpleTestTest.php
index 792741e..4e56602 100644
--- a/core/modules/simpletest/src/Tests/SimpleTestTest.php
+++ b/core/modules/simpletest/src/Tests/SimpleTestTest.php
@@ -183,7 +183,6 @@ function stubTest() {
 
     // The first three fails are caused by enabling a non-existent module in
     // setUp().
-
     // This causes the fourth of the five fails asserted in
     // confirmStubResults().
     $this->fail($this->failMessage);
diff --git a/core/modules/system/src/Plugin/ImageToolkit/Operation/gd/Rotate.php b/core/modules/system/src/Plugin/ImageToolkit/Operation/gd/Rotate.php
index 62a5405..4f91a31 100644
--- a/core/modules/system/src/Plugin/ImageToolkit/Operation/gd/Rotate.php
+++ b/core/modules/system/src/Plugin/ImageToolkit/Operation/gd/Rotate.php
@@ -57,7 +57,6 @@ protected function validateArguments(array $arguments) {
     if ($this->getToolkit()->getType() === IMAGETYPE_GIF) {
       // GIF does not work with a transparency channel, but can define 1 color
       // in its palette to act as transparent.
-
       // Get the current transparent color, if any.
       $gif_transparent_id = imagecolortransparent($this->getToolkit()->getResource());
       if ($gif_transparent_id !== -1) {
diff --git a/core/modules/system/src/Tests/Ajax/MultiFormTest.php b/core/modules/system/src/Tests/Ajax/MultiFormTest.php
index 4dab3cf..698db1d 100644
--- a/core/modules/system/src/Tests/Ajax/MultiFormTest.php
+++ b/core/modules/system/src/Tests/Ajax/MultiFormTest.php
@@ -79,7 +79,6 @@ function testMultiForm() {
 
     // Submit the "add more" button of each form twice. After each corresponding
     // page update, ensure the same as above.
-
     for ($i = 0; $i < 2; $i++) {
       $forms = $this->xpath($form_xpath);
       foreach ($forms as $offset => $form) {
diff --git a/core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php b/core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php
index 9760868..4991e60 100644
--- a/core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php
+++ b/core/modules/system/src/Tests/Common/TableSortExtenderUnitTest.php
@@ -19,7 +19,6 @@ class TableSortExtenderUnitTest extends KernelTestBase {
   function testTableSortInit() {
 
     // Test simple table headers.
-
     $headers = array('foo', 'bar', 'baz');
     // Reset $request->query to prevent parameters from Simpletest and Batch API
     // ending up in $ts['query'].
@@ -66,7 +65,6 @@ function testTableSortInit() {
     $this->assertEqual($ts, $expected_ts, 'Simple table headers plus $_GET parameters sorted correctly.');
 
     // Test complex table headers.
-
     $headers = array(
       'foo',
       array(
diff --git a/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php b/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php
index 7ccbbb5..03f2b52 100644
--- a/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php
+++ b/core/modules/system/src/Tests/Database/SelectTableSortDefaultTest.php
@@ -22,7 +22,6 @@ function testTableSortQuery() {
       array('field' => t('Task'), 'sort' => 'asc', 'first' => 'code', 'last' => 'sleep'),
       array('field' => t('Task'), 'sort' => 'desc', 'first' => 'sleep', 'last' => 'code'),
       // more elements here
-
     );
 
     foreach ($sorts as $sort) {
@@ -50,7 +49,6 @@ function testTableSortQueryFirst() {
       array('field' => t('Task'), 'sort' => 'asc', 'first' => 'code', 'last' => 'sleep'),
       array('field' => t('Task'), 'sort' => 'desc', 'first' => 'sleep', 'last' => 'code'),
       // more elements here
-
     );
 
     foreach ($sorts as $sort) {
diff --git a/core/modules/system/src/Tests/File/DirectoryTest.php b/core/modules/system/src/Tests/File/DirectoryTest.php
index 61256fa..db11624 100644
--- a/core/modules/system/src/Tests/File/DirectoryTest.php
+++ b/core/modules/system/src/Tests/File/DirectoryTest.php
@@ -71,7 +71,6 @@ function testFileCheckDirectoryHandling() {
       // directories. When executing a chmod() on a directory, PHP only sets the
       // read-only flag, which doesn't prevent files to actually be written
       // in the directory on any recent version of Windows.
-
       // Make directory read only.
       @drupal_chmod($directory, 0444);
       $this->assertFalse(file_prepare_directory($directory, 0), 'Error reported for a non-writeable directory.', 'File');
diff --git a/core/modules/system/src/Tests/File/UrlRewritingTest.php b/core/modules/system/src/Tests/File/UrlRewritingTest.php
index 5930011..c98f065 100644
--- a/core/modules/system/src/Tests/File/UrlRewritingTest.php
+++ b/core/modules/system/src/Tests/File/UrlRewritingTest.php
@@ -24,7 +24,6 @@ class UrlRewritingTest extends FileTestBase {
   function testShippedFileURL()  {
     // Test generating a URL to a shipped file (i.e. a file that is part of
     // Drupal core, a module or a theme, for example a JavaScript file).
-
     // Test alteration of file URLs to use a CDN.
     \Drupal::state()->set('file_test.hook_file_url_alter', 'cdn');
     $filepath = 'core/assets/vendor/jquery/jquery.min.js';
@@ -70,7 +69,6 @@ function testShippedFileURL()  {
    */
   function testPublicManagedFileURL() {
     // Test generating a URL to a managed file.
-
     // Test alteration of file URLs to use a CDN.
     \Drupal::state()->set('file_test.hook_file_url_alter', 'cdn');
     $uri = $this->createUri();
diff --git a/core/modules/system/src/Tests/Installer/InstallerTranslationMultipleLanguageTest.php b/core/modules/system/src/Tests/Installer/InstallerTranslationMultipleLanguageTest.php
index fe5a7f7..954e4c8 100644
--- a/core/modules/system/src/Tests/Installer/InstallerTranslationMultipleLanguageTest.php
+++ b/core/modules/system/src/Tests/Installer/InstallerTranslationMultipleLanguageTest.php
@@ -85,7 +85,6 @@ public function testTranslationsLoaded() {
     // installation language). English should be available based on profile
     // information and should be possible to add if not yet added, making
     // English overrides available.
-
     $config = \Drupal::config('user.settings');
     $override_de = $language_manager->getLanguageConfigOverride('de', 'user.settings');
     $override_en = $language_manager->getLanguageConfigOverride('en', 'user.settings');
diff --git a/core/modules/system/src/Tests/Menu/MenuLinkTreeTest.php b/core/modules/system/src/Tests/Menu/MenuLinkTreeTest.php
index 1be1153..7203338 100644
--- a/core/modules/system/src/Tests/Menu/MenuLinkTreeTest.php
+++ b/core/modules/system/src/Tests/Menu/MenuLinkTreeTest.php
@@ -94,7 +94,6 @@ public function testCreateLinksInMenu() {
      // - 6
      // - 8
      // With link 6 being the only external link.
-
     $links = array(
       1 => MenuLinkMock::create(array('id' => 'test.example1', 'route_name' => 'example1', 'title' => 'foo', 'parent' => '')),
       2 => MenuLinkMock::create(array('id' => 'test.example2', 'route_name' => 'example2', 'title' => 'bar', 'parent' => 'test.example1', 'route_parameters' => array('foo' => 'bar'))),
diff --git a/core/modules/system/src/Tests/Menu/MenuTreeStorageTest.php b/core/modules/system/src/Tests/Menu/MenuTreeStorageTest.php
index 66df4dd..cfa52e6 100644
--- a/core/modules/system/src/Tests/Menu/MenuTreeStorageTest.php
+++ b/core/modules/system/src/Tests/Menu/MenuTreeStorageTest.php
@@ -108,7 +108,6 @@ public function testMenuLinkMoving() {
     // - test4
     // -- test5
     // --- test6
-
     $this->addMenuLink('test1', '');
     $this->addMenuLink('test2', 'test1');
     $this->addMenuLink('test3', 'test2');
@@ -131,7 +130,6 @@ public function testMenuLinkMoving() {
     // --- test2
     // ---- test3
     // --- test6
-
     $this->assertMenuLink('test1', array('has_children' => 0, 'depth' => 1));
     $this->assertMenuLink('test2', array('has_children' => 1, 'depth' => 3), array('test5', 'test4'), array('test3'));
     $this->assertMenuLink('test3', array('has_children' => 0, 'depth' => 4), array('test2', 'test5', 'test4'));
@@ -149,7 +147,6 @@ public function testMenuLinkMoving() {
     // --- test5
     // ---- test2
     // ---- test6
-
     $this->assertMenuLink('test1', array('has_children' => 1, 'depth' => 1), array(), array('test4', 'test5', 'test2', 'test3', 'test6'));
     $this->assertMenuLink('test2', array('has_children' => 0, 'depth' => 4), array('test5', 'test4', 'test1'));
     $this->assertMenuLink('test3', array('has_children' => 0, 'depth' => 2), array('test1'));
@@ -182,7 +179,6 @@ public function testMenuDisabledChildLinks() {
     // <tools>
     // - test1
     // -- test2 (disabled)
-
     $this->addMenuLink('test1', '');
     $this->assertMenuLink('test1', array('has_children' => 0, 'depth' => 1));
 
diff --git a/core/modules/system/src/Tests/Plugin/Condition/RequestPathTest.php b/core/modules/system/src/Tests/Plugin/Condition/RequestPathTest.php
index dbdb3ac..73dc3e7 100644
--- a/core/modules/system/src/Tests/Plugin/Condition/RequestPathTest.php
+++ b/core/modules/system/src/Tests/Plugin/Condition/RequestPathTest.php
@@ -80,7 +80,6 @@ public function testConditions() {
 
     // Get the request path condition and test and configure it to check against
     // different patterns and requests.
-
     $pages = "/my/pass/page\r\n/my/pass/page2\r\n/foo";
 
     $request = Request::create('/my/pass/page2');
diff --git a/core/modules/system/src/Tests/Routing/ContentNegotiationRoutingTest.php b/core/modules/system/src/Tests/Routing/ContentNegotiationRoutingTest.php
index 8a9a26c..21ceef8 100644
--- a/core/modules/system/src/Tests/Routing/ContentNegotiationRoutingTest.php
+++ b/core/modules/system/src/Tests/Routing/ContentNegotiationRoutingTest.php
@@ -57,7 +57,6 @@ function testContentRouting() {
 
     $tests = [
       // ['path', 'accept', 'content-type'],
-
       // Extension is part of the route path. Constant Content-type.
       ['conneg/simple.json', '', 'application/json'],
       ['conneg/simple.json', 'application/xml', 'application/json'],
@@ -120,7 +119,6 @@ public function testFullNegotiation() {
     \Drupal::service('router.builder')->rebuild();
     $tests = [
       // ['path', 'accept', 'content-type'],
-
       ['conneg/negotiate', '', 'text/html'], // 406?
       ['conneg/negotiate', '', 'text/html'], // 406?
       // ['conneg/negotiate', '*/*', '??'],
diff --git a/core/modules/system/src/Tests/Session/SessionTest.php b/core/modules/system/src/Tests/Session/SessionTest.php
index 6c0c6ee..b9a030c 100644
--- a/core/modules/system/src/Tests/Session/SessionTest.php
+++ b/core/modules/system/src/Tests/Session/SessionTest.php
@@ -219,7 +219,6 @@ function testSessionWrite() {
 
     // Before every request we sleep one second to make sure that if the session
     // is saved, its timestamp will change.
-
     // Modify the session.
     sleep(1);
     $this->drupalGet('session-test/set/foo');
diff --git a/core/modules/system/src/Tests/Theme/ThemeTest.php b/core/modules/system/src/Tests/Theme/ThemeTest.php
index 4eae7ae..ae7b098 100644
--- a/core/modules/system/src/Tests/Theme/ThemeTest.php
+++ b/core/modules/system/src/Tests/Theme/ThemeTest.php
@@ -126,7 +126,6 @@ public function testNegotiatorPriorities() {
     $this->drupalGet('theme-test/priority');
 
     // Ensure that the custom theme negotiator was not able to set the theme.
-
     $this->assertNoText('Theme hook implementor=test_theme_theme_test__suggestion(). Foo=template_preprocess_theme_test', 'Theme hook suggestion ran with data available from a preprocess function for the base hook.');
   }
 
diff --git a/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php b/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
index efff986..b28adc7 100644
--- a/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
+++ b/core/modules/system/src/Tests/Update/UpdatePathTestBaseTest.php
@@ -37,7 +37,6 @@ public function testDatabaseLoaded() {
 
     // Ensure that all {router} entries can be unserialized. If they cannot be
     // unserialized a notice will be thrown by PHP.
-
     $result = \Drupal::database()->query("SELECT name, route from {router}")->fetchAllKeyed(0, 1);
     // For the purpose of fetching the notices and displaying more helpful error
     // messages, let's override the error handler temporarily.
diff --git a/core/modules/system/src/Tests/Update/UpdateScriptTest.php b/core/modules/system/src/Tests/Update/UpdateScriptTest.php
index 3f4edff..eb9f7df 100644
--- a/core/modules/system/src/Tests/Update/UpdateScriptTest.php
+++ b/core/modules/system/src/Tests/Update/UpdateScriptTest.php
@@ -108,7 +108,6 @@ function testRequirements() {
     // If there is a requirements warning, we expect it to be initially
     // displayed, but clicking the link to proceed should allow us to go
     // through the rest of the update process uninterrupted.
-
     // First, run this test with pending updates to make sure they can be run
     // successfully.
     $update_script_test_config->set('requirement_type', REQUIREMENT_WARNING)->save();
diff --git a/core/modules/system/system.module b/core/modules/system/system.module
index 3033a11..495eee4 100644
--- a/core/modules/system/system.module
+++ b/core/modules/system/system.module
@@ -739,7 +739,6 @@ function system_form_alter(&$form, FormStateInterface $form_state) {
   // If the page that's being built is cacheable, set the 'immutable' flag, to
   // ensure that when the form is used, a new form build ID is generated when
   // appropriate, to prevent information disclosure.
-
   // Note: This code just wants to know whether cache response headers are set,
   // not whether page_cache module will be active.
   // \Drupal\Core\EventSubscriber\FinishResponseSubscriber::onRespond will
diff --git a/core/modules/system/tests/fixtures/update/drupal-8.editor-editor_update_8001.php b/core/modules/system/tests/fixtures/update/drupal-8.editor-editor_update_8001.php
index c2e4cab..cd0df78 100644
--- a/core/modules/system/tests/fixtures/update/drupal-8.editor-editor_update_8001.php
+++ b/core/modules/system/tests/fixtures/update/drupal-8.editor-editor_update_8001.php
@@ -11,7 +11,6 @@
 $connection = Database::getConnection();
 
 // Simulate an un-synchronized environment.
-
 // Disable the 'basic_html' editor.
 $data = $connection->select('config')
   ->fields('config', ['data'])
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 8d94fa1..5b199b6 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
@@ -32,7 +32,6 @@ public function __construct() {
     // definitions here, because this is for unit testing. Real plugin managers
     // use a discovery implementation that allows for any module to add new
     // plugins to the system.
-
     // A simple plugin: the user login block.
     $this->discovery->setDefinition('user_login', array(
       'label' => t('User login'),
diff --git a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php
index ef6da47..a5a2c00 100644
--- a/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php
+++ b/core/modules/taxonomy/src/Tests/Views/TaxonomyTermViewTest.php
@@ -48,7 +48,6 @@ protected function setUp() {
     $this->drupalLogin($this->adminUser);
 
     // Create a vocabulary and add two term reference fields to article nodes.
-
     $this->fieldName1 = Unicode::strtolower($this->randomMachineName());
 
     $handler_settings = array(
diff --git a/core/modules/telephone/src/Tests/TelephoneFieldTest.php b/core/modules/telephone/src/Tests/TelephoneFieldTest.php
index a7497c9..6f07e59 100644
--- a/core/modules/telephone/src/Tests/TelephoneFieldTest.php
+++ b/core/modules/telephone/src/Tests/TelephoneFieldTest.php
@@ -40,7 +40,6 @@ protected function setUp() {
   }
 
   // Test fields.
-
   /**
    * Helper function for testTelephoneField().
    */
diff --git a/core/modules/text/src/Tests/TextFieldTest.php b/core/modules/text/src/Tests/TextFieldTest.php
index fcec361..7dffed8 100644
--- a/core/modules/text/src/Tests/TextFieldTest.php
+++ b/core/modules/text/src/Tests/TextFieldTest.php
@@ -29,7 +29,6 @@ protected function setUp() {
   }
 
   // Test fields.
-
   /**
    * Test text field validation.
    */
diff --git a/core/modules/text/text.module b/core/modules/text/text.module
index 1d2fdcc..6c412d2 100644
--- a/core/modules/text/text.module
+++ b/core/modules/text/text.module
@@ -96,7 +96,6 @@ function text_summary($text, $format = NULL, $size = NULL) {
 
   // If the delimiter has not been specified, try to split at paragraph or
   // sentence boundaries.
-
   // The summary may not be longer than maximum length specified. Initial slice.
   $summary = Unicode::truncate($text, $size);
 
diff --git a/core/modules/tracker/src/Tests/TrackerTest.php b/core/modules/tracker/src/Tests/TrackerTest.php
index fa533c1..4fbdeab 100644
--- a/core/modules/tracker/src/Tests/TrackerTest.php
+++ b/core/modules/tracker/src/Tests/TrackerTest.php
@@ -310,10 +310,8 @@ function testTrackerOrderingNewComments() {
     // 1. node_two
     // 2. node_one
     // Because that's the reverse order of the posted comments.
-
     // Now we're going to post a comment to node_one which should jump it to the
     // top of the list.
-
     $this->drupalLogin($this->user);
     // If the comment is posted in the same second as the last one then Drupal
     // can't tell the difference, so we wait one second here.
diff --git a/core/modules/tracker/tracker.module b/core/modules/tracker/tracker.module
index 54d490d..3ea5aa7 100644
--- a/core/modules/tracker/tracker.module
+++ b/core/modules/tracker/tracker.module
@@ -89,7 +89,6 @@ function tracker_cron() {
 
       // Insert the user-level data for the commenters (except if a commenter
       // is the node's author).
-
       // Get unique user IDs via entityQueryAggregate because it's the easiest
       // database agnostic way. We don't actually care about the comments here
       // so don't add an aggregate field.
@@ -347,7 +346,6 @@ function _tracker_remove($nid, $uid = NULL, $changed = NULL) {
     if ($tracker_node && $changed >= $tracker_node->changed) {
       // If we're here, the item being removed is *possibly* the item that
       // established the node's changed timestamp.
-
       // We just have to recalculate things from scratch.
       $changed = _tracker_calculate_changed($node);
 
diff --git a/core/modules/update/src/Tests/UpdateContribTest.php b/core/modules/update/src/Tests/UpdateContribTest.php
index 923b5d5..1894b1e 100644
--- a/core/modules/update/src/Tests/UpdateContribTest.php
+++ b/core/modules/update/src/Tests/UpdateContribTest.php
@@ -129,7 +129,6 @@ function testUpdateContribOrder() {
         'version' => '8.0.0',
       ),
       // All the rest should be visible as contrib modules at version 8.x-1.0.
-
       // aaa_update_test needs to be part of the "CCC Update test" project,
       // which would throw off the report if we weren't properly sorting by
       // the project names.
diff --git a/core/modules/update/src/Tests/UpdateUploadTest.php b/core/modules/update/src/Tests/UpdateUploadTest.php
index 1605f2e..ca3039e 100644
--- a/core/modules/update/src/Tests/UpdateUploadTest.php
+++ b/core/modules/update/src/Tests/UpdateUploadTest.php
@@ -155,7 +155,6 @@ function testUpdateManagerCoreSecurityUpdateMessages() {
 
     // Now, make sure none of the Update manager pages have duplicate messages
     // about core missing a security update.
-
     $this->drupalGet('admin/modules/install');
     $this->assertNoText(t('There is a security update available for your version of Drupal.'));
 
diff --git a/core/modules/update/update.compare.inc b/core/modules/update/update.compare.inc
index a077c38..30c562e 100644
--- a/core/modules/update/update.compare.inc
+++ b/core/modules/update/update.compare.inc
@@ -428,7 +428,6 @@ function update_calculate_project_update_status(&$project_data, $available) {
   //
   // Check to see if we need an update or not.
   //
-
   if (!empty($project_data['security updates'])) {
     // If we found security updates, that always trumps any other status.
     $project_data['status'] = UPDATE_NOT_SECURE;
diff --git a/core/modules/update/update.module b/core/modules/update/update.module
index 98f7569..8f46592 100644
--- a/core/modules/update/update.module
+++ b/core/modules/update/update.module
@@ -17,7 +17,6 @@
 use Drupal\Core\Site\Settings;
 
 // These are internally used constants for this code, do not modify.
-
 /**
  * Project is missing security update(s).
  */
diff --git a/core/modules/user/src/AccountForm.php b/core/modules/user/src/AccountForm.php
index 4c8bdef..5281e98 100644
--- a/core/modules/user/src/AccountForm.php
+++ b/core/modules/user/src/AccountForm.php
@@ -312,7 +312,6 @@ public function buildEntity(array $form, FormStateInterface $form_state) {
     //   set on the field, which throws an exception as the list requires
     //   numeric keys. Allow to override this per field. As this function is
     //   called twice, we have to prevent it from getting the array keys twice.
-
     if (is_string(key($form_state->getValue('roles')))) {
       $form_state->setValue('roles', array_keys(array_filter($form_state->getValue('roles'))));
     }
diff --git a/core/modules/user/src/Tests/UserSaveTest.php b/core/modules/user/src/Tests/UserSaveTest.php
index 6a454ee..1a2f614 100644
--- a/core/modules/user/src/Tests/UserSaveTest.php
+++ b/core/modules/user/src/Tests/UserSaveTest.php
@@ -17,7 +17,6 @@ class UserSaveTest extends WebTestBase {
    */
   function testUserImport() {
     // User ID must be a number that is not in the database.
-
     $uids = \Drupal::entityManager()->getStorage('user')->getQuery()
       ->sort('uid', 'DESC')
       ->range(0, 1)
diff --git a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTest.php b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTest.php
index 4178c5a..67f01f9 100644
--- a/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTest.php
+++ b/core/modules/user/tests/src/Kernel/Migrate/d6/MigrateUserConfigsTest.php
@@ -60,7 +60,6 @@ public function testUserSettings() {
     $this->assertIdentical('Guest', $config->get('anonymous'));
 
     // Tests migration of user_register using the AccountSettingsForm.
-
     // Map D6 value to D8 value
     $user_register_map = [
       [0, USER_REGISTER_ADMINISTRATORS_ONLY],
diff --git a/core/modules/user/tests/src/Unit/Plugin/Validation/Constraint/ProtectedUserFieldConstraintValidatorTest.php b/core/modules/user/tests/src/Unit/Plugin/Validation/Constraint/ProtectedUserFieldConstraintValidatorTest.php
index d29c8c5..3b06c3a 100644
--- a/core/modules/user/tests/src/Unit/Plugin/Validation/Constraint/ProtectedUserFieldConstraintValidatorTest.php
+++ b/core/modules/user/tests/src/Unit/Plugin/Validation/Constraint/ProtectedUserFieldConstraintValidatorTest.php
@@ -238,7 +238,6 @@ public function providerTestValidate() {
     $cases[] = [$items, FALSE];
 
     // The below calls should result in a violation.
-
     // Case 10: Password field changed, current password not confirmed.
     $field_definition = $this->getMock('Drupal\Core\Field\FieldDefinitionInterface');
     $field_definition->expects($this->exactly(2))
diff --git a/core/modules/views/src/EntityViewsData.php b/core/modules/views/src/EntityViewsData.php
index e41efa9..f7ea42e 100644
--- a/core/modules/views/src/EntityViewsData.php
+++ b/core/modules/views/src/EntityViewsData.php
@@ -425,7 +425,6 @@ protected function mapSingleFieldViewsData($table, $field_name, $field_type, $co
         // Treat these three long text fields the same.
         $field_type = 'text_long';
         // Intentional fall-through here to the default processing!
-
       default:
         // For most fields, the field type is generic enough to just use
         // the column type to determine the filters etc.
@@ -468,7 +467,6 @@ protected function mapSingleFieldViewsData($table, $field_name, $field_type, $co
     }
 
     // Do post-processing for a few field types.
-
     $process_method = 'processViewsDataFor' . Container::camelize($field_type);
     if (method_exists($this, $process_method)) {
       $this->{$process_method}($table, $field_definition, $views_field, $column_name);
diff --git a/core/modules/views/src/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php
index 2e5249b..41f2fca 100644
--- a/core/modules/views/src/Plugin/views/HandlerBase.php
+++ b/core/modules/views/src/Plugin/views/HandlerBase.php
@@ -104,7 +104,6 @@ public function init(ViewExecutable $view, DisplayPluginBase $display, array &$o
     // Check to see if this handler type is defaulted. Note that
     // we have to do a lookup because the type is singular but the
     // option is stored as the plural.
-
     $this->unpackOptions($this->options, $options);
 
     // This exist on most handlers, but not all. So they are still optional.
diff --git a/core/modules/views/src/Plugin/views/PluginBase.php b/core/modules/views/src/Plugin/views/PluginBase.php
index 1cc52f3..a1bc2d5 100644
--- a/core/modules/views/src/Plugin/views/PluginBase.php
+++ b/core/modules/views/src/Plugin/views/PluginBase.php
@@ -388,7 +388,6 @@ protected function viewsTokenReplace($text, $tokens) {
       // Use the unfiltered text for the Twig template, then filter the output.
       // Otherwise, Xss::filterAdmin could remove valid Twig syntax before the
       // template is parsed.
-
       $build = array(
         '#type' => 'inline_template',
         '#template' => $text,
diff --git a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
index 56641c6..6c0abc4 100644
--- a/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
+++ b/core/modules/views/src/Plugin/views/argument/ArgumentPluginBase.php
@@ -861,7 +861,6 @@ protected function summaryQuery() {
   protected function summaryNameField() {
     // Add the 'name' field. For example, if this is a uid argument, the
     // name field would be 'name' (i.e, the username).
-
     if (isset($this->name_table)) {
       // if the alias is different then we're probably added, not ensured,
       // so look up the join and add it instead.
diff --git a/core/modules/views/src/Plugin/views/display/PathPluginBase.php b/core/modules/views/src/Plugin/views/display/PathPluginBase.php
index cc92492..4ceafff 100644
--- a/core/modules/views/src/Plugin/views/display/PathPluginBase.php
+++ b/core/modules/views/src/Plugin/views/display/PathPluginBase.php
@@ -243,7 +243,6 @@ public function alterRoutes(RouteCollection $collection) {
 
         // @todo Figure out whether we need to merge some settings (like
         // requirements).
-
         // Replace the existing route with a new one based on views.
         $original_route = $collection->get($name);
         $collection->remove($name);
@@ -289,7 +288,6 @@ public function getMenuLinks() {
 
     // Replace % with the link to our standard views argument loader
     // views_arg_load -- which lives in views.module.
-
     $bits = explode('/', $this->getOption('path'));
 
     // Replace % with %views_arg for menu autoloading and add to the
diff --git a/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php b/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
index 62cb79c..ce4478c 100644
--- a/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
+++ b/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
@@ -306,7 +306,6 @@ public function exposedFormSubmit(&$form, FormStateInterface $form_state, &$excl
    */
   public function resetForm(&$form, FormStateInterface $form_state) {
     // _SESSION is not defined for users who are not logged in.
-
     // If filters are not overridden, store the 'remember' settings on the
     // default display. If they are, store them on this display. This way,
     // multiple displays in the same view can share the same filters and
diff --git a/core/modules/views/src/Plugin/views/field/Field.php b/core/modules/views/src/Plugin/views/field/Field.php
index 6d318c4..9eec49d 100644
--- a/core/modules/views/src/Plugin/views/field/Field.php
+++ b/core/modules/views/src/Plugin/views/field/Field.php
@@ -610,7 +610,6 @@ public function buildGroupByForm(&$form, FormStateInterface $form_state) {
     parent::buildGroupByForm($form, $form_state);
     // With "field API" fields, the column target of the grouping function
     // and any additional grouping columns must be specified.
-
     $field_columns = array_keys($this->getFieldDefinition()->getColumns());
     $group_columns = array(
       'entity_id' => $this->t('Entity ID'),
diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
index 4e4bf7f..be00e22 100644
--- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
@@ -852,7 +852,6 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
 
 
       // Get a list of the available fields and arguments for token replacement.
-
       // Setup the tokens for fields.
       $previous = $this->getPreviousFieldLabels();
       $optgroup_arguments = (string) t('Arguments');
@@ -871,7 +870,6 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
       $this->documentSelfTokens($options[$optgroup_fields]);
 
       // Default text.
-
       $output = [];
       $output[] = [
         '#markup' => '<p>' . $this->t('You must add some additional fields to this display before using this field. These fields may be marked as <em>Exclude from display</em> if you prefer. Note that due to rendering order, you cannot use fields that come after this field; if you need a field not listed here, rearrange your fields.') . '</p>',
diff --git a/core/modules/views/src/Plugin/views/filter/Combine.php b/core/modules/views/src/Plugin/views/filter/Combine.php
index 10a3158..91022be 100644
--- a/core/modules/views/src/Plugin/views/filter/Combine.php
+++ b/core/modules/views/src/Plugin/views/filter/Combine.php
@@ -120,7 +120,6 @@ public function validate() {
 
   // By default things like opEqual uses add_where, that doesn't support
   // complex expressions, so override all operators.
-
   function opEqual($expression) {
     $placeholder = $this->placeholder();
     $operator = $this->operator();
diff --git a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
index f7cbf1b..97d7c16 100644
--- a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
+++ b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php
@@ -696,7 +696,6 @@ protected function buildGroupSubmit($form, FormStateInterface $form_state) {
     $group_items = $form_state->getValue(array('options', 'group_info', 'group_items'));
     uasort($group_items, array('Drupal\Component\Utility\SortArray', 'sortByWeightElement'));
     // Filter out removed items.
-
     // Start from 1 to avoid problems with #default_value in the widget.
     $new_id = 1;
     $new_default = 'All';
@@ -978,7 +977,6 @@ protected function buildExposedFiltersGroupForm(&$form, FormStateInterface $form
       // a) The title, where users define how they identify a pair of operator | value
       // b) The operator
       // c) The value (or values) to use in the filter with the selected operator
-
       // In each row, we have to display the operator form and the value from
       // $row acts as a fake form to render each widget in a row.
       $row = array();
diff --git a/core/modules/views/src/Plugin/views/filter/InOperator.php b/core/modules/views/src/Plugin/views/filter/InOperator.php
index f3f1ca4..0c2c366 100644
--- a/core/modules/views/src/Plugin/views/filter/InOperator.php
+++ b/core/modules/views/src/Plugin/views/filter/InOperator.php
@@ -306,11 +306,9 @@ protected function valueSubmit($form, FormStateInterface $form_state) {
     // was not set, and the key to the checkbox if it is set.
     // Unfortunately, this means that if the key to that checkbox is 0,
     // we are unable to tell if that checkbox was set or not.
-
     // Luckily, the '#value' on the checkboxes form actually contains
     // *only* a list of checkboxes that were set, and we can use that
     // instead.
-
     $form_state->setValue(array('options', 'value'), $form['value']['#value']);
   }
 
diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php
index d55ae56..1203b82 100644
--- a/core/modules/views/src/Plugin/views/query/Sql.php
+++ b/core/modules/views/src/Plugin/views/query/Sql.php
@@ -537,10 +537,8 @@ public function ensureTable($table, $relationship = NULL, JoinPluginBase $join =
       // the same table with the same join multiple times.  For
       // example, a view that filters on 3 taxonomy terms using AND
       // needs to join taxonomy_term_data 3 times with the same join.
-
       // scan through the table queue to see if a matching join and
       // relationship exists.  If so, use it instead of this join.
-
       // TODO: Scanning through $this->tableQueue results in an
       // O(N^2) algorithm, and this code runs every time the view is
       // instantiated (Views 2 does not currently cache queries).
@@ -631,7 +629,6 @@ protected function adjustJoin($join, $relationship) {
     if ($relationship != $this->view->storage->get('base_table')) {
       // If we're linking to the primary table, the relationship to use will
       // be the prior relationship. Unless it's a direct link.
-
       // Safety! Don't modify an original here.
       $join = clone $join;
 
@@ -745,7 +742,6 @@ public function addField($table, $field, $alias = '', $params = array()) {
 
     // PostgreSQL truncates aliases to 63 characters:
     //   https://www.drupal.org/node/571548.
-
     // We limit the length of the original alias up to 60 characters
     // to get a unique alias later if its have duplicates
     $alias = strtolower(substr($alias, 0, 60));
diff --git a/core/modules/views/src/Tests/AssertViewsCacheTagsTrait.php b/core/modules/views/src/Tests/AssertViewsCacheTagsTrait.php
index 123a9cb..a6d1c55 100644
--- a/core/modules/views/src/Tests/AssertViewsCacheTagsTrait.php
+++ b/core/modules/views/src/Tests/AssertViewsCacheTagsTrait.php
@@ -62,7 +62,6 @@ protected function assertViewsCacheTags(ViewExecutable $view, $expected_results_
       $cache_plugin = $view->display_handler->getPlugin('cache');
 
       // Results cache.
-
       // Ensure that the views query is built.
       $view->build();
       $results_cache_item = \Drupal::cache('data')->get($cache_plugin->generateResultsKey());
diff --git a/core/modules/views/src/Tests/Entity/FieldEntityTest.php b/core/modules/views/src/Tests/Entity/FieldEntityTest.php
index 215b631..532ed9c 100644
--- a/core/modules/views/src/Tests/Entity/FieldEntityTest.php
+++ b/core/modules/views/src/Tests/Entity/FieldEntityTest.php
@@ -51,7 +51,6 @@ protected function setUp($import_test_views = TRUE) {
   public function testGetEntity() {
     // The view is a view of comments, their nodes and their authors, so there
     // are three layers of entities.
-
     $account = User::create(['name' => $this->randomMachineName(), 'bundle' => 'user']);
     $account->save();
 
diff --git a/core/modules/views/src/Tests/Handler/FieldWebTest.php b/core/modules/views/src/Tests/Handler/FieldWebTest.php
index a6ff1b4..c6c5629 100644
--- a/core/modules/views/src/Tests/Handler/FieldWebTest.php
+++ b/core/modules/views/src/Tests/Handler/FieldWebTest.php
@@ -428,7 +428,6 @@ public function testFieldClasses() {
     }
 
     // Tests the label class/element.
-
     // Set some common label element types and see whether they appear with and without a custom class set.
     foreach (array('h1', 'span', 'p', 'div') as $element_type) {
       $id_field->options['element_label_type'] = $element_type;
@@ -448,7 +447,6 @@ public function testFieldClasses() {
     }
 
     // Tests the element classes/element.
-
     // Set some common element element types and see whether they appear with and without a custom class set.
     foreach (array('h1', 'span', 'p', 'div') as $element_type) {
       $id_field->options['element_type'] = $element_type;
diff --git a/core/modules/views/src/Tests/Handler/HandlerTest.php b/core/modules/views/src/Tests/Handler/HandlerTest.php
index 8ff4033..93ecd73 100644
--- a/core/modules/views/src/Tests/Handler/HandlerTest.php
+++ b/core/modules/views/src/Tests/Handler/HandlerTest.php
@@ -254,7 +254,6 @@ public function testRelationshipUI() {
 
     // The test view has a relationship to node_revision so the field should
     // show a relationship selection.
-
     $this->drupalGet($handler_options_path);
     $relationship_name = 'options[relationship]';
     $this->assertFieldByName($relationship_name);
diff --git a/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php b/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php
index 0708b86..eea272e 100644
--- a/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php
+++ b/core/modules/views/src/Tests/Plugin/ArgumentDefaultTest.php
@@ -128,7 +128,6 @@ public function testArgumentDefaultFixed() {
    * @todo Test php default argument.
    */
   //function testArgumentDefaultPhp() {}
-
   /**
    * Test node default argument.
    */
diff --git a/core/modules/views/src/Tests/Plugin/PagerTest.php b/core/modules/views/src/Tests/Plugin/PagerTest.php
index e3282a3..d07d470 100644
--- a/core/modules/views/src/Tests/Plugin/PagerTest.php
+++ b/core/modules/views/src/Tests/Plugin/PagerTest.php
@@ -49,7 +49,6 @@ public function testStorePagerSettings() {
     $this->drupalLogin($admin_user);
     // Test behavior described in
     //   https://www.drupal.org/node/652712#comment-2354918.
-
     $this->drupalGet('admin/structure/views/view/test_view/edit');
 
     $edit = array(
@@ -239,7 +238,6 @@ public function testNormalPager() {
     $this->assertEqual(count($view->result), 11, 'All items are return');
 
     // TODO test number of pages.
-
     // Test items per page = 0.
     // Setup and test a offset.
     $view = Views::getView('test_pager_full');
@@ -289,7 +287,6 @@ function testPagerApi() {
     $view = Views::getView('test_pager_full');
     $view->setDisplay();
     // On the first round don't initialize the pager.
-
     $this->assertEqual($view->getItemsPerPage(), NULL, 'If the pager is not initialized and no manual override there is no items per page.');
     $rand_number = rand(1, 5);
     $view->setItemsPerPage($rand_number);
diff --git a/core/modules/views/src/Tests/SearchIntegrationTest.php b/core/modules/views/src/Tests/SearchIntegrationTest.php
index e71e159..f6ecd08 100644
--- a/core/modules/views/src/Tests/SearchIntegrationTest.php
+++ b/core/modules/views/src/Tests/SearchIntegrationTest.php
@@ -58,7 +58,6 @@ public function testSearchIntegration() {
     // Test the various views filters by visiting their pages.
     // These are in the test view 'test_search', and they just display the
     // titles of the nodes in the result, as links.
-
     // Page with a keyword filter of 'pizza'.
     $this->drupalGet('test-filter');
     $this->assertLink('pizza');
diff --git a/core/modules/views/src/Tests/SearchMultilingualTest.php b/core/modules/views/src/Tests/SearchMultilingualTest.php
index 5f583f0..008dd99 100644
--- a/core/modules/views/src/Tests/SearchMultilingualTest.php
+++ b/core/modules/views/src/Tests/SearchMultilingualTest.php
@@ -69,7 +69,6 @@ public function testMultilingualSearchFilter() {
     // Test the keyword filter by visiting the page.
     // The views are in the test view 'test_search', and they just display the
     // titles of the nodes in the result, as links.
-
     // Page with a keyword filter of 'pizza'. This should find the Spanish
     // translated node, which has 'pizza' in the title, but not the English
     // one, which does not have the word 'pizza' in it.
diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php
index 601ad3e..3d85bed 100644
--- a/core/modules/views/src/ViewExecutable.php
+++ b/core/modules/views/src/ViewExecutable.php
@@ -78,7 +78,6 @@ class ViewExecutable implements \Serializable {
   public $result = array();
 
   // May be used to override the current pager info.
-
   /**
    * The current page. If the view uses pagination.
    *
@@ -129,7 +128,6 @@ class ViewExecutable implements \Serializable {
   public $feedIcons = array();
 
   // Exposed widget input
-
   /**
    * All the form data from $form_state->getValues().
    *
@@ -253,7 +251,6 @@ class ViewExecutable implements \Serializable {
   public $base_database = NULL;
 
   // Handlers which are active on this view.
-
   /**
    * Stores the field handlers which are initialized on this view.
    *
@@ -681,7 +678,6 @@ public function getExposedInput() {
       }
 
       // If we have no input at all, check for remembered input via session.
-
       // If filters are not overridden, store the 'remember' settings on the
       // default display. If they are, store them on this display. This way,
       // multiple displays in the same view can share the same filters and
@@ -1657,7 +1653,6 @@ public function preExecute($args = array()) {
   public function postExecute() {
     // unset current view so we can be properly destructed later on.
     // Return the previous value in case we're an attachment.
-
     if ($this->old_view) {
       $old_view = array_pop($this->old_view);
     }
diff --git a/core/modules/views/src/Views.php b/core/modules/views/src/Views.php
index 10d8240..0ac1202 100644
--- a/core/modules/views/src/Views.php
+++ b/core/modules/views/src/Views.php
@@ -221,7 +221,6 @@ public static function getApplicableViews($type) {
     $result = array();
     foreach (\Drupal::entityManager()->getStorage('view')->loadMultiple($entity_ids) as $view) {
       // Check each display to see if it meets the criteria and is enabled.
-
       foreach ($view->get('display') as $id => $display) {
         // If the key doesn't exist, enabled is assumed.
         $enabled = !empty($display['display_options']['enabled']) || !array_key_exists('enabled', $display['display_options']);
diff --git a/core/modules/views/src/ViewsDataHelper.php b/core/modules/views/src/ViewsDataHelper.php
index 791cd37..29106a5 100644
--- a/core/modules/views/src/ViewsDataHelper.php
+++ b/core/modules/views/src/ViewsDataHelper.php
@@ -62,7 +62,6 @@ public function fetchFields($base, $type, $grouping = FALSE, $sub_type = NULL) {
       // can appear in different places in the actual data structure so that
       // the data doesn't have to be repeated a lot. This essentially lets
       // each field have a cheap kind of inheritance.
-
       foreach ($data as $table => $table_data) {
         $bases = array();
         $strings = array();
diff --git a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
index 3c46c9e..c6cb0af 100644
--- a/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
+++ b/core/modules/views/tests/src/Kernel/EventSubscriber/ViewsEntitySchemaSubscriberIntegrationTest.php
@@ -291,7 +291,6 @@ public function testVariousTableUpdates() {
     // base + revision <-> base + translation + revision
     // base <-> base + revision
     // base <-> base + translation + revision
-
     // base <-> base + translation
     $this->updateEntityTypeToTranslatable();
     $this->entityDefinitionUpdateManager->applyUpdates();
diff --git a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
index 594bd62..4c03b55 100644
--- a/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
+++ b/core/modules/views/tests/src/Kernel/QueryGroupByTest.php
@@ -179,7 +179,6 @@ public function testGroupByNone() {
   public function testGroupByCountOnlyFilters() {
     // Check if GROUP BY and HAVING are included when a view
     // doesn't display SUM, COUNT, MAX, etc. functions in SELECT statement.
-
     for ($x = 0; $x < 10; $x++) {
       $this->storage->create(array('name' => 'name1'))->save();
     }
diff --git a/core/modules/views/tests/src/Unit/EventSubscriber/RouteSubscriberTest.php b/core/modules/views/tests/src/Unit/EventSubscriber/RouteSubscriberTest.php
index f9d3add..0e8ebd9 100644
--- a/core/modules/views/tests/src/Unit/EventSubscriber/RouteSubscriberTest.php
+++ b/core/modules/views/tests/src/Unit/EventSubscriber/RouteSubscriberTest.php
@@ -122,7 +122,6 @@ public function testOnAlterRoutes() {
     // Ensure that even both the collectRoutes() and alterRoutes() methods
     // are called on the displays, we ensure that the route first defined by
     // views is dropped.
-
     $this->routeSubscriber->routes();
     $this->assertNull($this->routeSubscriber->onAlterRoutes($route_event));
 
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 b70b55d..e50d503 100644
--- a/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php
+++ b/core/modules/views/tests/src/Unit/Plugin/field/FieldPluginBaseTest.php
@@ -329,7 +329,6 @@ public function providerTestRenderAsLinkWithPathAndOptions() {
     // Note: In contrast to the testRenderAsLinkWithUrlAndOptions test we don't
     // test the language, because the path processor for the language won't be
     // executed for paths which aren't routed.
-
     // Entity flag.
     $entity = $this->getMock('Drupal\Core\Entity\EntityInterface');
     $data[] = ['test-path', ['entity' => $entity], '<a href="/test-path">value</a>'];
diff --git a/core/modules/views/views.api.php b/core/modules/views/views.api.php
index 29e5382..ea27f9b 100644
--- a/core/modules/views/views.api.php
+++ b/core/modules/views/views.api.php
@@ -142,7 +142,6 @@ function hook_views_data() {
   //   langcode VARCHAR(12)         COMMENT 'Language code field.',
   //   PRIMARY KEY(nid)
   // );
-
   // Define the return array.
   $data = array();
 
@@ -293,7 +292,6 @@ function hook_views_data() {
   // and you may also specify overrides for various settings that make up the
   // plugin definition. See examples below; the Boolean example demonstrates
   // setting overrides.
-
   // Node ID field, exposed as relationship only, since it is a foreign key
   // in this table.
   $data['example_table']['nid'] = array(
diff --git a/core/modules/views/views.module b/core/modules/views/views.module
index c6632a5..4d59980 100644
--- a/core/modules/views/views.module
+++ b/core/modules/views/views.module
@@ -376,7 +376,6 @@ function views_add_contextual_links(&$render_element, $location, $display_id, ar
     // If contextual_links_locations are not set, provide a sane default. (To
     // avoid displaying any contextual links at all, a display plugin can still
     // set 'contextual_links_locations' to, e.g., {""}.)
-
     if (!isset($plugin['contextual_links_locations'])) {
       $plugin['contextual_links_locations'] = array('view');
     }
diff --git a/core/modules/views_ui/src/Tests/DefaultViewsTest.php b/core/modules/views_ui/src/Tests/DefaultViewsTest.php
index 3b3f2a7..85a78b0 100644
--- a/core/modules/views_ui/src/Tests/DefaultViewsTest.php
+++ b/core/modules/views_ui/src/Tests/DefaultViewsTest.php
@@ -38,7 +38,6 @@ function testDefaultViews() {
     // @todo Disabled default views do now appear on the front page. Test this
     // behavior with templates instead.
     // $this->assertNoLinkByHref($edit_href);
-
     // Enable the view, and make sure it is now visible on the main listing
     // page.
     $this->drupalGet('admin/structure/views');
@@ -51,7 +50,6 @@ function testDefaultViews() {
     // $this->assertNoLink(t('Revert'));
     // $revert_href = 'admin/structure/views/view/glossary/revert';
     // $this->assertNoLinkByHref($revert_href);
-
     // Edit the view and change the title. Make sure that the new title is
     // displayed.
     $new_title = $this->randomMachineName(16);
@@ -81,7 +79,6 @@ function testDefaultViews() {
     // $this->drupalPostForm($revert_href, array(), t('Revert'));
     // $this->drupalGet('glossary');
     // $this->assertNoText($new_title);
-
     // Duplicate the view and check that the normal schema of duplicated views is used.
     $this->drupalGet('admin/structure/views');
     $this->clickViewsOperationLink(t('Duplicate'), '/glossary');
diff --git a/core/modules/views_ui/src/Tests/HandlerTest.php b/core/modules/views_ui/src/Tests/HandlerTest.php
index e4c628f..d5f1274 100644
--- a/core/modules/views_ui/src/Tests/HandlerTest.php
+++ b/core/modules/views_ui/src/Tests/HandlerTest.php
@@ -164,7 +164,6 @@ public function testUICRUD() {
   public function testHandlerHelpEscaping() {
     // Setup a field with two instances using a different label.
     // Ensure that the label is escaped properly.
-
     $this->drupalCreateContentType(['type' => 'article']);
     $this->drupalCreateContentType(['type' => 'page']);
 
diff --git a/core/modules/views_ui/src/Tests/SettingsTest.php b/core/modules/views_ui/src/Tests/SettingsTest.php
index 30397f4..5198bb6 100644
--- a/core/modules/views_ui/src/Tests/SettingsTest.php
+++ b/core/modules/views_ui/src/Tests/SettingsTest.php
@@ -120,7 +120,6 @@ function testEditUI() {
     $this->assertTrue(strpos($xpath[0], "node_field_data.status = '1'") !== FALSE, 'The placeholders in the views sql is replace by the actual value.');
 
     // Test the advanced settings form.
-
     // Test the confirmation message.
     $this->drupalPostForm('admin/structure/views/settings/advanced', array(), t('Save configuration'));
     $this->assertText(t('The configuration options have been saved.'));
diff --git a/core/modules/views_ui/src/ViewEditForm.php b/core/modules/views_ui/src/ViewEditForm.php
index 00ef836..c01dc08 100644
--- a/core/modules/views_ui/src/ViewEditForm.php
+++ b/core/modules/views_ui/src/ViewEditForm.php
@@ -197,7 +197,6 @@ public function form(array $form, FormStateInterface $form_state) {
         $tab_content['#attributes']['class'][] = 'views-display-deleted';
       }
       // Mark disabled displays as such.
-
       if ($view->getExecutable()->displayHandlers->has($display_id) && !$view->getExecutable()->displayHandlers->get($display_id)->isEnabled()) {
         $tab_content['#attributes']['class'][] = 'views-display-disabled';
       }
diff --git a/core/modules/views_ui/src/ViewUI.php b/core/modules/views_ui/src/ViewUI.php
index 6195c8c..2b9962f 100644
--- a/core/modules/views_ui/src/ViewUI.php
+++ b/core/modules/views_ui/src/ViewUI.php
@@ -214,7 +214,6 @@ public function isUninstalling() {
   public function standardSubmit($form, FormStateInterface $form_state) {
     // Determine whether the values the user entered are intended to apply to
     // the current display or the default display.
-
     list($was_defaulted, $is_defaulted, $revert) = $this->getOverrideValues($form, $form_state);
 
     // Based on the user's choice in the display dropdown, determine which display
@@ -566,7 +565,6 @@ public function renderPreview($display_id, $args = array()) {
       }
 
       // Make view links come back to preview.
-
       // Also override the current path so we get the pager, and make sure the
       // Request object gets all of the proper values from $_SERVER.
       $request = Request::createFromGlobals();
diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist
index ab2081d..e320764 100644
--- a/core/phpcs.xml.dist
+++ b/core/phpcs.xml.dist
@@ -18,6 +18,14 @@
   <rule ref="Drupal.CSS.ColourDefinition"/>
   <rule ref="Drupal.Commenting.DocCommentStar"/>
   <rule ref="Drupal.Commenting.FileComment"/>
+  <rule ref="Drupal.Commenting.InlineComment">
+    <exclude name="Drupal.Commenting.InlineComment.DocBlock"/>
+    <exclude name="Drupal.Commenting.InlineComment.InvalidEndChar"/>
+    <exclude name="Drupal.Commenting.InlineComment.NoSpaceBefore"/>
+    <exclude name="Drupal.Commenting.InlineComment.NotCapital"/>
+    <exclude name="Drupal.Commenting.InlineComment.SpacingBefore"/>
+    <exclude name="Drupal.Commenting.InlineComment.WrongStyle"/>
+  </rule>
   <rule ref="Drupal.ControlStructures.ElseIf"/>
   <rule ref="Drupal.Files.EndFileNewline"/>
   <rule ref="Drupal.Files.TxtFileLineLength"/>
diff --git a/core/profiles/standard/src/Tests/StandardTest.php b/core/profiles/standard/src/Tests/StandardTest.php
index 4a79ffd..bdfe484 100644
--- a/core/profiles/standard/src/Tests/StandardTest.php
+++ b/core/profiles/standard/src/Tests/StandardTest.php
@@ -193,7 +193,6 @@ function testStandard() {
     //$this->drupalGet($url);
     //$this->drupalGet($url);
     //$this->assertEqual('HIT', $this->drupalGetHeader(DynamicPageCacheSubscriber::HEADER), 'Full node page is cached by Dynamic Page Cache.');
-
     $url = Url::fromRoute('entity.user.canonical', ['user' => 1]);
     $this->drupalGet($url);
     $this->drupalGet($url);
diff --git a/core/tests/Drupal/KernelTests/AssertLegacyTrait.php b/core/tests/Drupal/KernelTests/AssertLegacyTrait.php
index 1d1816a..41fcf1d 100644
--- a/core/tests/Drupal/KernelTests/AssertLegacyTrait.php
+++ b/core/tests/Drupal/KernelTests/AssertLegacyTrait.php
@@ -96,7 +96,6 @@ protected function assertNotIdentical($actual, $expected, $message = '') {
   protected function assertIdenticalObject($actual, $expected, $message = '') {
     // Note: ::assertSame checks whether its the same object. ::assertEquals
     // though compares
-
     $this->assertEquals($expected, $actual, $message);
   }
 
diff --git a/core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php b/core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php
index 8288198..14579b7 100644
--- a/core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Database/SchemaTest.php
@@ -311,7 +311,6 @@ function testIndexLength() {
     $table_specification_with_new_index['indexes']['test_separate'] = [['test_field_text', 200]];
 
     // Ensure that the exceptions of addIndex are thrown as expected.
-
     try {
       $schema_object->addIndex('test_table_index_length', 'test_separate', [['test_field_text', 200]], $table_specification);
       $this->fail('\Drupal\Core\Database\SchemaObjectExistsException exception missed.');
@@ -736,7 +735,6 @@ protected function assertFieldChange($old_spec, $new_spec, $test_data = NULL) {
   public function testFindTables() {
     // We will be testing with three tables, two of them using the default
     // prefix and the third one with an individually specified prefix.
-
     // Set up a new connection with different connection info.
     $connection_info = Database::getConnectionInfo();
 
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php
index 4338aef..71f597e 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryAggregateTest.php
@@ -275,7 +275,6 @@ public function testAggregation() {
     ));
 
     // Test aggregation/groupby support for fieldapi fields.
-
     // Just group by a fieldapi field.
     $this->queryResult = $this->factory->getAggregate('entity_test')
       ->groupBy('field_test_1')
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php
index 0d4e5c4..5b465bf 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityQueryTest.php
@@ -339,31 +339,24 @@ function testSort() {
     // entity id marked with *:
     // 8  NULL pl *
     // 12 NULL pl *
-
     // 4  NULL tr *
     // 12 NULL tr
-
     // 2  blue NULL *
     // 3  blue NULL *
-
     // 10 blue pl *
     // 11 blue pl *
     // 14 blue pl *
     // 15 blue pl *
-
     // 6  blue tr *
     // 7  blue tr *
     // 14 blue tr
     // 15 blue tr
-
     // 1  red  NULL
     // 3  red  NULL
-
     // 9  red  pl *
     // 11 red  pl
     // 13 red  pl *
     // 15 red  pl
-
     // 5  red  tr *
     // 7  red  tr
     // 13 red  tr
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
index dc7d94f..e173b1f 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityValidationTest.php
@@ -82,10 +82,8 @@ protected function createTestEntity($entity_type) {
    */
   public function testValidation() {
     // Ensure that the constraint manager is marked as cached cleared.
-
     // Use the protected property on the cache_clearer first to check whether
     // the constraint manager is added there.
-
     // Ensure that the proxy class is initialized, which has the necessary
     // method calls attached.
     \Drupal::service('plugin.cache_clearer');
diff --git a/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php b/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php
index 07c5ec5..713ad0d 100644
--- a/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php
+++ b/core/tests/Drupal/KernelTests/Core/Entity/FieldSqlStorageTest.php
@@ -482,7 +482,6 @@ public function testTableNames() {
     // Note: we need to test entity types with long names. We therefore use
     // fields on imaginary entity types (works as long as we don't actually save
     // them), and just check the generated table names.
-
     // Short entity type and field name.
     $entity_type = 'short_entity_type';
     $field_name = 'short_field_name';
diff --git a/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php b/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
index ccada29..20f4404 100644
--- a/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
+++ b/core/tests/Drupal/Tests/Core/Cache/BackendChainImplementationUnitTest.php
@@ -57,7 +57,6 @@ protected function setUp() {
     // Note that in all cases, when the same key is set on more than one
     // backend, the values are voluntarily different, this ensures in which
     // backend we actually fetched the key when doing get calls.
-
     // Set a key present on all backends (for delete).
     $this->firstBackend->set('t123', 1231);
     $this->secondBackend->set('t123', 1232);
diff --git a/core/tests/Drupal/Tests/Core/Database/ConditionTest.php b/core/tests/Drupal/Tests/Core/Database/ConditionTest.php
index 6a05726..eea6fd1 100644
--- a/core/tests/Drupal/Tests/Core/Database/ConditionTest.php
+++ b/core/tests/Drupal/Tests/Core/Database/ConditionTest.php
@@ -118,7 +118,6 @@ public function dataProviderTestCompileWithKnownOperators() {
     // $data[] = [' ( STRCMP (name, :db_condition_placeholder_0) ) ', '', ['test-string'], 'STRCMP', [':db_condition_placeholder_0' => 'test-string']];
     // $data[] = [' (EXISTS ) ', '', NULL, 'EXISTS'];
     // $data[] = [' (name NOT EXISTS ) ', 'name', NULL, 'NOT EXISTS'];
-
     return $data;
   }
 
diff --git a/core/tests/Drupal/Tests/Core/Menu/ContextualLinkManagerTest.php b/core/tests/Drupal/Tests/Core/Menu/ContextualLinkManagerTest.php
index b3f0151..2890ca2 100644
--- a/core/tests/Drupal/Tests/Core/Menu/ContextualLinkManagerTest.php
+++ b/core/tests/Drupal/Tests/Core/Menu/ContextualLinkManagerTest.php
@@ -194,7 +194,6 @@ public function testGetContextualLinkPluginsByGroupWithCache() {
     $this->assertEquals($definitions, $result);
 
     // Ensure that the static cache works, so no second cache get is executed.
-
     $result = $this->contextualLinkManager->getContextualLinkPluginsByGroup('group1');
     $this->assertEquals($definitions, $result);
   }
diff --git a/core/tests/Drupal/Tests/Core/Menu/DefaultMenuLinkTreeManipulatorsTest.php b/core/tests/Drupal/Tests/Core/Menu/DefaultMenuLinkTreeManipulatorsTest.php
index 2000fe6..7378121 100644
--- a/core/tests/Drupal/Tests/Core/Menu/DefaultMenuLinkTreeManipulatorsTest.php
+++ b/core/tests/Drupal/Tests/Core/Menu/DefaultMenuLinkTreeManipulatorsTest.php
@@ -318,7 +318,6 @@ public function testCheckNodeAccess() {
 
     // On top of the node access checking now run the ordinary route based
     // access checkers.
-
     // Ensure that the access manager is just called for the non-node routes.
     $this->accessManager->expects($this->at(0))
       ->method('checkNamedRoute')
diff --git a/core/tests/Drupal/Tests/Core/Render/RendererTest.php b/core/tests/Drupal/Tests/Core/Render/RendererTest.php
index bed7d3d..b1da143 100644
--- a/core/tests/Drupal/Tests/Core/Render/RendererTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/RendererTest.php
@@ -67,8 +67,6 @@ public function providerTestRenderBasic() {
 
 
     // Part 1: the most simplistic render arrays possible, none using #theme.
-
-
     // Pass a NULL.
     $data[] = [NULL, ''];
     // Pass an empty string.
@@ -142,8 +140,6 @@ public function providerTestRenderBasic() {
     ], 'foo'];
 
     // Part 2: render arrays using #theme and #theme_wrappers.
-
-
     // Tests that #theme and #theme_wrappers can co-exist on an element.
     $build = [
       '#theme' => 'common_test_foo',
@@ -231,8 +227,6 @@ public function providerTestRenderBasic() {
 
 
     // Part 3: render arrays using #markup as a fallback for #theme hooks.
-
-
     // Theme suggestion is not implemented, #markup should be rendered.
     $build = [
       '#theme' => ['suggestionnotimplemented'],
@@ -286,8 +280,6 @@ public function providerTestRenderBasic() {
 
 
     // Part 4: handling of #children and child renderable elements.
-
-
     // #theme is implemented so the values of both #children and 'child' will
     // be ignored - it is the responsibility of the theme hook to render these
     // if appropriate.
diff --git a/core/tests/Drupal/Tests/Core/Route/RoleAccessCheckTest.php b/core/tests/Drupal/Tests/Core/Route/RoleAccessCheckTest.php
index dadf612..876d04b 100644
--- a/core/tests/Drupal/Tests/Core/Route/RoleAccessCheckTest.php
+++ b/core/tests/Drupal/Tests/Core/Route/RoleAccessCheckTest.php
@@ -92,7 +92,6 @@ public function roleAccessProvider() {
 
     // Setup one user with the first role, one with the second, one with both
     // and one final without any of these two roles.
-
     $account_1 = new UserSession(array(
       'uid' => 1,
       'roles' => array($rid_1),
diff --git a/core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php b/core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php
index d10c82d..50b5c90 100644
--- a/core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php
+++ b/core/tests/Drupal/Tests/Core/Routing/UrlGeneratorTest.php
@@ -198,7 +198,6 @@ public function testAliasGeneration() {
     $this->assertEquals('/hello/world', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(3))
       ->method('processOutbound')
       ->with($this->anything());
@@ -219,7 +218,6 @@ public function testAliasGenerationUsingInterfaceConstants() {
     $this->assertEquals('/hello/world', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(3))
       ->method('processOutbound')
       ->with($this->anything());
@@ -299,7 +297,6 @@ public function testAliasGenerationWithParameters() {
     $this->assertEquals('/goodbye/cruel/world', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(7))
       ->method('processOutbound')
       ->with($this->anything());
@@ -381,7 +378,6 @@ public function testAbsoluteURLGeneration() {
     $this->assertEquals('http://localhost/hello/world', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(2))
       ->method('processOutbound')
       ->with($this->anything());
@@ -399,7 +395,6 @@ public function testAbsoluteURLGenerationUsingInterfaceConstants() {
     $this->assertEquals('http://localhost/hello/world', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(2))
       ->method('processOutbound')
       ->with($this->anything());
@@ -439,7 +434,6 @@ public function testUrlGenerationWithHttpsRequirement() {
     $this->assertEquals('https://localhost/test/four', $url);
     // No cacheability to test; UrlGenerator::generate() doesn't support
     // collecting cacheability metadata.
-
     $this->routeProcessorManager->expects($this->exactly(2))
       ->method('processOutbound')
       ->with($this->anything());
