Skip to content
Snippets Groups Projects
Verified Commit 1af51d41 authored by quietone's avatar quietone
Browse files

Issue #3486526 by theodorejb, andypost, nicxvan: Inconsistent switch case syntax

parent acd9e7c8
No related branches found
No related tags found
11 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!10786Issue #3490579 by shalini_jha, mstrelan: Add void return to all views...,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation
Pipeline #349153 passed with warnings
Pipeline: drupal

#349174

    Pipeline: drupal

    #349168

      Pipeline: drupal

      #349158

        Showing
        with 14 additions and 14 deletions
        ...@@ -150,11 +150,11 @@ public function loadByProperties(array $conditions = []) { ...@@ -150,11 +150,11 @@ public function loadByProperties(array $conditions = []) {
        $checked_value = $field_storage->uuid(); $checked_value = $field_storage->uuid();
        break; break;
        case 'uuid'; case 'uuid':
        $checked_value = $field->uuid(); $checked_value = $field->uuid();
        break; break;
        case 'deleted'; case 'deleted':
        $checked_value = $field->isDeleted(); $checked_value = $field->isDeleted();
        break; break;
        ......
        ...@@ -30,7 +30,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable ...@@ -30,7 +30,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
        $list = array_map('trim', $list); $list = array_map('trim', $list);
        $list = FilterArray::removeEmptyStrings($list); $list = FilterArray::removeEmptyStrings($list);
        switch ($field_type) { switch ($field_type) {
        case 'boolean'; case 'boolean':
        $option = preg_replace('/^option_/', '', $row->getSourceProperty('property')); $option = preg_replace('/^option_/', '', $row->getSourceProperty('property'));
        for ($i = 0; $i < 2; $i++) { for ($i = 0; $i < 2; $i++) {
        $value = $list[$i]; $value = $list[$i];
        ......
        ...@@ -29,7 +29,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable ...@@ -29,7 +29,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
        if (isset($data['settings']['allowed_values'])) { if (isset($data['settings']['allowed_values'])) {
        $allowed_values = $data['settings']['allowed_values']; $allowed_values = $data['settings']['allowed_values'];
        switch ($type) { switch ($type) {
        case 'boolean'; case 'boolean':
        if (isset($allowed_values[$property])) { if (isset($allowed_values[$property])) {
        $translation = $row->getSourceProperty('translation'); $translation = $row->getSourceProperty('translation');
        break; break;
        ......
        ...@@ -293,10 +293,10 @@ protected function getExpectedCacheContexts(?array $sparse_fieldset = NULL) { ...@@ -293,10 +293,10 @@ protected function getExpectedCacheContexts(?array $sparse_fieldset = NULL) {
        */ */
        protected function getExpectedUnauthorizedAccessMessage($method) { protected function getExpectedUnauthorizedAccessMessage($method) {
        switch ($method) { switch ($method) {
        case 'GET'; case 'GET':
        return "The 'access comments' permission is required and the comment must be published."; return "The 'access comments' permission is required and the comment must be published.";
        case 'POST'; case 'POST':
        return "The 'post comments' permission is required."; return "The 'post comments' permission is required.";
        case 'PATCH': case 'PATCH':
        ......
        ...@@ -323,7 +323,7 @@ protected function getPostDocument(): array { ...@@ -323,7 +323,7 @@ protected function getPostDocument(): array {
        */ */
        protected function getExpectedUnauthorizedAccessMessage($method) { protected function getExpectedUnauthorizedAccessMessage($method) {
        switch ($method) { switch ($method) {
        case 'GET'; case 'GET':
        return "The 'view media' permission is required when the media item is published."; return "The 'view media' permission is required when the media item is published.";
        case 'POST': case 'POST':
        ......
        ...@@ -32,7 +32,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable ...@@ -32,7 +32,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
        switch ($language_content_type) { switch ($language_content_type) {
        // In the case of being 0, it will be skipped. We are not actually setting // In the case of being 0, it will be skipped. We are not actually setting
        // a null value. // a null value.
        case 0; case 0:
        $setting = NULL; $setting = NULL;
        break; break;
        ......
        ...@@ -292,7 +292,7 @@ protected function getNormalizedPatchEntity() { ...@@ -292,7 +292,7 @@ protected function getNormalizedPatchEntity() {
        */ */
        protected function getExpectedUnauthorizedAccessMessage($method) { protected function getExpectedUnauthorizedAccessMessage($method) {
        switch ($method) { switch ($method) {
        case 'GET'; case 'GET':
        return "The 'view media' permission is required when the media item is published."; return "The 'view media' permission is required when the media item is published.";
        case 'POST': case 'POST':
        ......
        ...@@ -64,12 +64,12 @@ public function on403(ExceptionEvent $event): void { ...@@ -64,12 +64,12 @@ public function on403(ExceptionEvent $event): void {
        $redirect_url = NULL; $redirect_url = NULL;
        if ($this->account->isAuthenticated()) { if ($this->account->isAuthenticated()) {
        switch ($route_name) { switch ($route_name) {
        case 'user.login'; case 'user.login':
        // Redirect an authenticated user to the profile page. // Redirect an authenticated user to the profile page.
        $redirect_url = Url::fromRoute('entity.user.canonical', ['user' => $this->account->id()], ['absolute' => TRUE]); $redirect_url = Url::fromRoute('entity.user.canonical', ['user' => $this->account->id()], ['absolute' => TRUE]);
        break; break;
        case 'user.register'; case 'user.register':
        // Redirect an authenticated user to the profile form. // Redirect an authenticated user to the profile form.
        $redirect_url = Url::fromRoute('entity.user.edit_form', ['user' => $this->account->id()], ['absolute' => TRUE]); $redirect_url = Url::fromRoute('entity.user.edit_form', ['user' => $this->account->id()], ['absolute' => TRUE]);
        break; break;
        ......
        ...@@ -68,8 +68,8 @@ public function adminSummary() { ...@@ -68,8 +68,8 @@ public function adminSummary() {
        default: default:
        return $this->t('asc'); return $this->t('asc');
        case 'DESC'; case 'DESC':
        case 'desc'; case 'desc':
        return $this->t('desc'); return $this->t('desc');
        } }
        } }
        ......
        ...@@ -86,7 +86,7 @@ protected function assertExtensionConfig(string $name, string $type): void { ...@@ -86,7 +86,7 @@ protected function assertExtensionConfig(string $name, string $type): void {
        $file_name = DRUPAL_ROOT . '/core/modules/system/tests/modules/' . $name . '/' . $name . '.info.yml'; $file_name = DRUPAL_ROOT . '/core/modules/system/tests/modules/' . $name . '/' . $name . '.info.yml';
        break; break;
        default; default:
        $file_name = DRUPAL_ROOT . '/core/' . $type . 's/' . $name . '/' . $name . '.info.yml'; $file_name = DRUPAL_ROOT . '/core/' . $type . 's/' . $name . '/' . $name . '.info.yml';
        } }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment