diff --git a/core/lib/Drupal/Component/DependencyInjection/Container.php b/core/lib/Drupal/Component/DependencyInjection/Container.php index 45cc8b9..ac6a6f6 100644 --- a/core/lib/Drupal/Component/DependencyInjection/Container.php +++ b/core/lib/Drupal/Component/DependencyInjection/Container.php @@ -586,8 +586,7 @@ public function getServiceIds() { /** * Ensure that cloning doesn't work. */ - private function __clone() - { + private function __clone() { } } diff --git a/core/lib/Drupal/Core/Config/DatabaseStorage.php b/core/lib/Drupal/Core/Config/DatabaseStorage.php index 8a749a3..0ac6134 100644 --- a/core/lib/Drupal/Core/Config/DatabaseStorage.php +++ b/core/lib/Drupal/Core/Config/DatabaseStorage.php @@ -159,7 +159,7 @@ protected function doWrite($name, $data) { * @throws \Drupal\Core\Config\StorageException * If a database error occurs. */ - protected function ensureTableExists() { + protected function ensureTableExists() { try { if (!$this->connection->schema()->tableExists($this->table)) { $this->connection->schema()->createTable($this->table, static::schemaDefinition()); diff --git a/core/lib/Drupal/Core/Form/FormStateDecoratorBase.php b/core/lib/Drupal/Core/Form/FormStateDecoratorBase.php index c063666..2668f59 100644 --- a/core/lib/Drupal/Core/Form/FormStateDecoratorBase.php +++ b/core/lib/Drupal/Core/Form/FormStateDecoratorBase.php @@ -557,7 +557,7 @@ public function hasValue($key) { /** * {@inheritdoc} */ - public function isValueEmpty($key) { + public function isValueEmpty($key) { return $this->decoratedFormState->isValueEmpty($key); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php index e0fd5cb..95c5bce 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableAccessDeniedHttpException.php @@ -16,7 +16,7 @@ class CacheableAccessDeniedHttpException extends AccessDeniedHttpException imple /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php index 97d432a..4737c33 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableBadRequestHttpException.php @@ -16,7 +16,7 @@ class CacheableBadRequestHttpException extends BadRequestHttpException implement /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php index ca804fb..6646c23 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableConflictHttpException.php @@ -16,7 +16,7 @@ class CacheableConflictHttpException extends ConflictHttpException implements Ca /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php index 4568c91..13a3d0c 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableGoneHttpException.php @@ -16,7 +16,7 @@ class CacheableGoneHttpException extends GoneHttpException implements CacheableD /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php index 76f529e..aadc57e 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableHttpException.php @@ -16,7 +16,7 @@ class CacheableHttpException extends HttpException implements CacheableDependenc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $statusCode = 0, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $statusCode = 0, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($statusCode, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php index a75f80a..c9647aa 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableLengthRequiredHttpException.php @@ -16,7 +16,7 @@ class CacheableLengthRequiredHttpException extends LengthRequiredHttpException i /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php index d9919b1..5267a15 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableMethodNotAllowedHttpException.php @@ -16,7 +16,7 @@ class CacheableMethodNotAllowedHttpException extends MethodNotAllowedHttpExcepti /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, array $allow, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($allow, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php index 94bf1c2..85896f0 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableNotAcceptableHttpException.php @@ -16,7 +16,7 @@ class CacheableNotAcceptableHttpException extends NotAcceptableHttpException imp /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php index 9e5e136..e3097fe 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableNotFoundHttpException.php @@ -16,7 +16,7 @@ class CacheableNotFoundHttpException extends NotFoundHttpException implements Ca /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php index 7921d3e..427b069 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionFailedHttpException.php @@ -16,7 +16,7 @@ class CacheablePreconditionFailedHttpException extends PreconditionFailedHttpExc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php index d66b255..06fd395 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheablePreconditionRequiredHttpException.php @@ -16,7 +16,7 @@ class CacheablePreconditionRequiredHttpException extends PreconditionRequiredHtt /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php index 313b9ae..671a523 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableServiceUnavailableHttpException.php @@ -16,7 +16,7 @@ class CacheableServiceUnavailableHttpException extends ServiceUnavailableHttpExc /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($retryAfter, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php index e709c0b..8c60a51 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableTooManyRequestsHttpException.php @@ -16,7 +16,7 @@ class CacheableTooManyRequestsHttpException extends TooManyRequestsHttpException /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $retryAfter = NULL, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($retryAfter, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php index 35dbd72..1931caa 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnauthorizedHttpException.php @@ -16,7 +16,7 @@ class CacheableUnauthorizedHttpException extends UnauthorizedHttpException imple /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $challenge, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $challenge, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($challenge, $message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php index 655c67a..1f64587 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnprocessableEntityHttpException.php @@ -16,7 +16,7 @@ class CacheableUnprocessableEntityHttpException extends UnprocessableEntityHttpE /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php b/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php index c6f6023..013ca9c 100644 --- a/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php +++ b/core/lib/Drupal/Core/Http/Exception/CacheableUnsupportedMediaTypeHttpException.php @@ -16,7 +16,7 @@ class CacheableUnsupportedMediaTypeHttpException extends UnsupportedMediaTypeHtt /** * {@inheritdoc} */ - public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { + public function __construct(CacheableDependencyInterface $cacheability, $message = NULL, \Exception $previous = NULL, $code = 0) { $this->setCacheability($cacheability); parent::__construct($message, $previous, $code); } diff --git a/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php b/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php index 9267237..56c0339 100644 --- a/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php +++ b/core/modules/aggregator/tests/src/Unit/Plugin/AggregatorPluginSettingsBaseTest.php @@ -109,5 +109,6 @@ public function testSettingsForm() { namespace Drupal\Core\Form; if (!function_exists('drupal_set_message')) { - function drupal_set_message() {} + function drupal_set_message() { + } } diff --git a/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php b/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php index 5e2a8ce..bd82d68 100644 --- a/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php +++ b/core/modules/field_ui/src/Form/EntityViewDisplayEditForm.php @@ -113,7 +113,7 @@ protected function getDisplayModeOptions() { /** * {@inheritdoc} */ - protected function getDisplayModesLink() {; + protected function getDisplayModesLink() { return [ '#type' => 'link', '#title' => t('Manage view modes'), diff --git a/core/modules/language/src/Form/NegotiationConfigureForm.php b/core/modules/language/src/Form/NegotiationConfigureForm.php index e029134..325a435 100644 --- a/core/modules/language/src/Form/NegotiationConfigureForm.php +++ b/core/modules/language/src/Form/NegotiationConfigureForm.php @@ -215,7 +215,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) { * @param string $type * The language type to generate the table for. */ - protected function configureFormTable(array &$form, $type) { + protected function configureFormTable(array &$form, $type) { $info = $form['#language_types_info'][$type]; $table_form = [ diff --git a/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php b/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php index 9ed7abd..7095bc1 100644 --- a/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php +++ b/core/modules/language/tests/src/Functional/LanguageConfigurationTest.php @@ -198,7 +198,7 @@ protected function checkConfigurableLanguageWeight($state = 'by default') { * @return int * Maximum weight of configurable languages. */ - protected function getHighestConfigurableLanguageWeight(){ + protected function getHighestConfigurableLanguageWeight() { $max_weight = 0; $storage = $this->container->get('entity_type.manager') diff --git a/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php b/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php index face32e..ee496e2 100644 --- a/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php +++ b/core/modules/locale/tests/src/Functional/LocaleFileSystemFormTest.php @@ -21,7 +21,7 @@ class LocaleFileSystemFormTest extends BrowserTestBase { /** * {@inheritdoc} */ - protected function setUp(){ + protected function setUp() { parent::setUp(); $account = $this->drupalCreateUser(['administer site configuration']); $this->drupalLogin($account); diff --git a/core/modules/rest/src/Plugin/Type/ResourcePluginManager.php b/core/modules/rest/src/Plugin/Type/ResourcePluginManager.php index 3ba7333..4dd9ca2 100644 --- a/core/modules/rest/src/Plugin/Type/ResourcePluginManager.php +++ b/core/modules/rest/src/Plugin/Type/ResourcePluginManager.php @@ -43,7 +43,7 @@ public function __construct(\Traversable $namespaces, CacheBackendInterface $cac * * @see https://www.drupal.org/node/2874934 */ - public function getInstance(array $options){ + public function getInstance(array $options) { if (isset($options['id'])) { return $this->createInstance($options['id']); } diff --git a/core/modules/rest/tests/src/Functional/AnonResourceTestTrait.php b/core/modules/rest/tests/src/Functional/AnonResourceTestTrait.php index b05ddf2..284d17e 100644 --- a/core/modules/rest/tests/src/Functional/AnonResourceTestTrait.php +++ b/core/modules/rest/tests/src/Functional/AnonResourceTestTrait.php @@ -31,6 +31,7 @@ protected function assertResponseWhenMissingAuthentication(ResponseInterface $re /** * {@inheritdoc} */ - protected function assertAuthenticationEdgeCases($method, Url $url, array $request_options) {} + protected function assertAuthenticationEdgeCases($method, Url $url, array $request_options) { + } } diff --git a/core/modules/rest/tests/src/Functional/BasicAuthResourceTestTrait.php b/core/modules/rest/tests/src/Functional/BasicAuthResourceTestTrait.php index 6f8c621..fbb870b 100644 --- a/core/modules/rest/tests/src/Functional/BasicAuthResourceTestTrait.php +++ b/core/modules/rest/tests/src/Functional/BasicAuthResourceTestTrait.php @@ -38,6 +38,7 @@ protected function assertResponseWhenMissingAuthentication(ResponseInterface $re /** * {@inheritdoc} */ - protected function assertAuthenticationEdgeCases($method, Url $url, array $request_options) {} + protected function assertAuthenticationEdgeCases($method, Url $url, array $request_options) { + } } diff --git a/core/modules/serialization/serialization.install b/core/modules/serialization/serialization.install index afc3311..f5a11b8 100644 --- a/core/modules/serialization/serialization.install +++ b/core/modules/serialization/serialization.install @@ -33,7 +33,8 @@ function serialization_requirements($phase) { /** * @see hal_update_8301() */ -function serialization_update_8301() {} +function serialization_update_8301() { +} /** * Add serialization.settings::bc_primitives_as_strings configuration. diff --git a/core/modules/serialization/src/Encoder/XmlEncoder.php b/core/modules/serialization/src/Encoder/XmlEncoder.php index 53177b0..125a2cc 100644 --- a/core/modules/serialization/src/Encoder/XmlEncoder.php +++ b/core/modules/serialization/src/Encoder/XmlEncoder.php @@ -60,7 +60,7 @@ public function setBaseEncoder($encoder) { /** * {@inheritdoc} */ - public function encode($data, $format, array $context = []){ + public function encode($data, $format, array $context = []) { return $this->getBaseEncoder()->encode($data, $format, $context); } @@ -74,7 +74,7 @@ public function supportsEncoding($format) { /** * {@inheritdoc} */ - public function decode($data, $format, array $context = []){ + public function decode($data, $format, array $context = []) { return $this->getBaseEncoder()->decode($data, $format, $context); } diff --git a/core/modules/simpletest/src/RouteProvider.php b/core/modules/simpletest/src/RouteProvider.php index 3aacc40..edb330b 100644 --- a/core/modules/simpletest/src/RouteProvider.php +++ b/core/modules/simpletest/src/RouteProvider.php @@ -49,7 +49,7 @@ public function getRouteByName($name) { /** * {@inheritdoc} */ - public function preLoadRoutes($names){ + public function preLoadRoutes($names) { return $this->lazyLoadItself()->preLoadRoutes($names); } diff --git a/core/modules/system/tests/src/Functional/File/ConfigTest.php b/core/modules/system/tests/src/Functional/File/ConfigTest.php index f413c38..caf6915 100644 --- a/core/modules/system/tests/src/Functional/File/ConfigTest.php +++ b/core/modules/system/tests/src/Functional/File/ConfigTest.php @@ -11,7 +11,7 @@ */ class ConfigTest extends BrowserTestBase { - protected function setUp(){ + protected function setUp() { parent::setUp(); $this->drupalLogin($this->drupalCreateUser(['administer site configuration'])); } diff --git a/core/modules/user/tests/src/Functional/UserRolesAssignmentTest.php b/core/modules/user/tests/src/Functional/UserRolesAssignmentTest.php index fc8958c..c0ee2d1 100644 --- a/core/modules/user/tests/src/Functional/UserRolesAssignmentTest.php +++ b/core/modules/user/tests/src/Functional/UserRolesAssignmentTest.php @@ -21,7 +21,7 @@ protected function setUp() { * Tests that a user can be assigned a role and that the role can be removed * again. */ - public function testAssignAndRemoveRole() { + public function testAssignAndRemoveRole() { $rid = $this->drupalCreateRole(['administer users']); $account = $this->drupalCreateUser(); diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php index a2e19a2..faa86b7 100644 --- a/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php +++ b/core/modules/views/src/Plugin/views/display/DisplayPluginBase.php @@ -1471,7 +1471,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { '#title' => $this->t('Show contextual links'), '#default_value' => $this->getOption('show_admin_links'), ]; - break; + break; case 'use_more': $form['#title'] .= $this->t('Add a more link to the bottom of the display.'); $form['use_more'] = [ @@ -1866,7 +1866,7 @@ public function validateOptionsForm(&$form, FormStateInterface $form_state) { if (preg_match('/[^a-zA-Z0-9-_ ]/', $css_class)) { $form_state->setError($form['css_class'], $this->t('CSS classes must be alphanumeric or dashes only.')); } - break; + break; case 'display_id': if ($form_state->getValue('display_id')) { if (preg_match('/[^a-z0-9_]/', $form_state->getValue('display_id'))) { diff --git a/core/modules/views/tests/src/Kernel/Plugin/StyleGridTest.php b/core/modules/views/tests/src/Kernel/Plugin/StyleGridTest.php index 1495399..1ef2009 100644 --- a/core/modules/views/tests/src/Kernel/Plugin/StyleGridTest.php +++ b/core/modules/views/tests/src/Kernel/Plugin/StyleGridTest.php @@ -69,11 +69,16 @@ protected function assertGrid(ViewExecutable $view, $alignment, $columns) { } $width = '0'; switch ($columns) { - case 5: $width = '20'; break; - case 4: $width = '25'; break; - case 3: $width = '33.3333'; break; - case 2: $width = '50'; break; - case 1: $width = '100'; break; + case 5: $width = '20'; + break; + case 4: $width = '25'; + break; + case 3: $width = '33.3333'; + break; + case 2: $width = '50'; + break; + case 1: $width = '100'; + break; } // Ensure last column exists. $result = $this->xpath('//div[contains(@class, "views-col") and contains(@class, :columns) and starts-with(@style, :width)]', [':columns' => 'col-' . $columns, ':width' => 'width: ' . $width]); diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist index 75f01b3..d141606 100644 --- a/core/phpcs.xml.dist +++ b/core/phpcs.xml.dist @@ -126,6 +126,7 @@ + @@ -136,6 +137,11 @@ + + + + + diff --git a/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php b/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php index bdf66bd..ff401e1 100644 --- a/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php +++ b/core/tests/Drupal/KernelTests/Core/File/UrlRewritingTest.php @@ -21,7 +21,7 @@ class UrlRewritingTest extends FileTestBase { /** * Tests the rewriting of shipped file URLs by hook_file_url_alter(). */ - public function testShippedFileURL() { + public 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). diff --git a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/hook_include.inc b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/hook_include.inc index da3a9c2..ed4fb46 100644 --- a/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/hook_include.inc +++ b/core/tests/Drupal/Tests/Core/Extension/modules/module_handler_test/hook_include.inc @@ -8,4 +8,5 @@ /** * Test hook. */ -function module_handler_test_hook_include() {} +function module_handler_test_hook_include() { +} diff --git a/core/tests/Drupal/Tests/Core/Site/SettingsTest.php b/core/tests/Drupal/Tests/Core/Site/SettingsTest.php index 4d34b30..5e4f1d0 100644 --- a/core/tests/Drupal/Tests/Core/Site/SettingsTest.php +++ b/core/tests/Drupal/Tests/Core/Site/SettingsTest.php @@ -28,7 +28,7 @@ class SettingsTest extends UnitTestCase { /** * @covers ::__construct */ - protected function setUp(){ + protected function setUp() { $this->config = [ 'one' => '1', 'two' => '2', diff --git a/core/tests/Drupal/Tests/WebAssert.php b/core/tests/Drupal/Tests/WebAssert.php index 9171a3f..8149551 100644 --- a/core/tests/Drupal/Tests/WebAssert.php +++ b/core/tests/Drupal/Tests/WebAssert.php @@ -451,7 +451,7 @@ public function assert($condition, $message) { * @throws \Behat\Mink\Exception\ElementNotFoundException * @throws \Behat\Mink\Exception\ExpectationException */ - public function fieldDisabled($field, TraversableElement $container = NULL) { + public function fieldDisabled($field, TraversableElement $container = NULL) { $container = $container ?: $this->session->getPage(); $node = $container->findField($field);