diff --git a/core/lib/Drupal/Core/Ajax/CloseDialogCommand.php b/core/lib/Drupal/Core/Ajax/CloseDialogCommand.php
index 1feeb0c8c02fcb410a8137dacd0dbe3a0f02d496..d1ffb9c470c7c4522e98be7df2b851bbb77204de 100644
--- a/core/lib/Drupal/Core/Ajax/CloseDialogCommand.php
+++ b/core/lib/Drupal/Core/Ajax/CloseDialogCommand.php
@@ -32,7 +32,7 @@ class CloseDialogCommand implements CommandInterface {
    *   (optional) Whether to persist the dialog in the DOM or not.
    */
   public function __construct($selector = NULL, $persist = FALSE) {
-    $this->selector = $selector ? $selector : '#drupal-modal';
+    $this->selector = $selector ?: '#drupal-modal';
     $this->persist = $persist;
   }
 
diff --git a/core/lib/Drupal/Core/Ajax/SetDialogOptionCommand.php b/core/lib/Drupal/Core/Ajax/SetDialogOptionCommand.php
index f24f97caf38e531617649eea91ca4ca3a634cad3..d6ba45d559db2b9faf5b8dce5588d99e0f4ead6d 100644
--- a/core/lib/Drupal/Core/Ajax/SetDialogOptionCommand.php
+++ b/core/lib/Drupal/Core/Ajax/SetDialogOptionCommand.php
@@ -43,7 +43,7 @@ class SetDialogOptionCommand implements CommandInterface {
    *   The value of the option to be passed to the dialog.
    */
   public function __construct($selector, $option_name, $option_value) {
-    $this->selector = $selector ? $selector : '#drupal-modal';
+    $this->selector = $selector ?: '#drupal-modal';
     $this->optionName = $option_name;
     $this->optionValue = $option_value;
   }
diff --git a/core/lib/Drupal/Core/Ajax/SetDialogTitleCommand.php b/core/lib/Drupal/Core/Ajax/SetDialogTitleCommand.php
index 4294aeb69937a00f35c6aa481a1600810a5a57d7..9a88f2652a5a62df8093dd822af596f8e4cc96c9 100644
--- a/core/lib/Drupal/Core/Ajax/SetDialogTitleCommand.php
+++ b/core/lib/Drupal/Core/Ajax/SetDialogTitleCommand.php
@@ -19,7 +19,7 @@ class SetDialogTitleCommand extends SetDialogOptionCommand {
    *   The title that will be set on the dialog.
    */
   public function __construct($selector, $title) {
-    $this->selector = $selector ? $selector : '#drupal-modal';
+    $this->selector = $selector ?: '#drupal-modal';
     $this->optionName = 'title';
     $this->optionValue = $title;
   }
diff --git a/core/lib/Drupal/Core/Asset/CssCollectionGrouper.php b/core/lib/Drupal/Core/Asset/CssCollectionGrouper.php
index 5161023360451ef4343b500f0478610818573315..12a5b8c8d0037caa934b68a65f591f387746c5b0 100644
--- a/core/lib/Drupal/Core/Asset/CssCollectionGrouper.php
+++ b/core/lib/Drupal/Core/Asset/CssCollectionGrouper.php
@@ -75,7 +75,7 @@ public function group(array $css_assets) {
         }
         unset($groups[$i]['data'], $groups[$i]['weight'], $groups[$i]['basename']);
         $groups[$i]['items'] = [];
-        $current_group_keys = $group_keys ? $group_keys : NULL;
+        $current_group_keys = $group_keys ?: NULL;
       }
 
       // Add the item to the current group.
diff --git a/core/lib/Drupal/Core/Asset/JsCollectionGrouper.php b/core/lib/Drupal/Core/Asset/JsCollectionGrouper.php
index 17253626f2d0a42c6a29bd83c6b70d0262eac7bf..832e54243d7097f79cb29d4a027b0f83705b8aa5 100644
--- a/core/lib/Drupal/Core/Asset/JsCollectionGrouper.php
+++ b/core/lib/Drupal/Core/Asset/JsCollectionGrouper.php
@@ -51,7 +51,7 @@ public function group(array $js_assets) {
         $groups[$index] = $item;
         unset($groups[$index]['data'], $groups[$index]['weight']);
         $groups[$index]['items'] = [];
-        $current_group_keys = $group_keys ? $group_keys : NULL;
+        $current_group_keys = $group_keys ?: NULL;
       }
 
       // Add the item to the current group.
diff --git a/core/lib/Drupal/Core/Config/ConfigImporter.php b/core/lib/Drupal/Core/Config/ConfigImporter.php
index 563094df9f877d5d50f47340718cc8677ccf47bc..411ffad30fd686eee7befb0de18b530190c0d7a2 100644
--- a/core/lib/Drupal/Core/Config/ConfigImporter.php
+++ b/core/lib/Drupal/Core/Config/ConfigImporter.php
@@ -1018,7 +1018,7 @@ protected function importConfig($collection, $op, $name) {
     }
     else {
       $data = $this->storageComparer->getSourceStorage($collection)->read($name);
-      $config->setData($data ? $data : []);
+      $config->setData($data ?: []);
       $config->save();
     }
     $this->setProcessedConfiguration($collection, $op, $name);
diff --git a/core/lib/Drupal/Core/Datetime/DateFormatter.php b/core/lib/Drupal/Core/Datetime/DateFormatter.php
index 7c800d8e4537d3620cbe331c8178df55a29a5e4f..db5404fec160b78f0f3cae343195045d213266ea 100644
--- a/core/lib/Drupal/Core/Datetime/DateFormatter.php
+++ b/core/lib/Drupal/Core/Datetime/DateFormatter.php
@@ -168,7 +168,7 @@ public function formatInterval($interval, $granularity = 2, $langcode = NULL) {
         break;
       }
     }
-    return $output ? $output : $this->t('0 sec', [], ['langcode' => $langcode]);
+    return $output ?: $this->t('0 sec', [], ['langcode' => $langcode]);
   }
 
   /**
diff --git a/core/lib/Drupal/Core/Entity/ContentEntityBase.php b/core/lib/Drupal/Core/Entity/ContentEntityBase.php
index 039fdce703eb547565fa37f0018564a32f9de12b..e787bfc21de999b293d8d2f66915dc899191c210 100644
--- a/core/lib/Drupal/Core/Entity/ContentEntityBase.php
+++ b/core/lib/Drupal/Core/Entity/ContentEntityBase.php
@@ -200,7 +200,7 @@ abstract class ContentEntityBase extends EntityBase implements \IteratorAggregat
    */
   public function __construct(array $values, $entity_type, $bundle = FALSE, $translations = []) {
     $this->entityTypeId = $entity_type;
-    $this->entityKeys['bundle'] = $bundle ? $bundle : $this->entityTypeId;
+    $this->entityKeys['bundle'] = $bundle ?: $this->entityTypeId;
     $this->langcodeKey = $this->getEntityType()->getKey('langcode');
     $this->defaultLangcodeKey = $this->getEntityType()->getKey('default_langcode');
     $this->revisionTranslationAffectedKey = $this->getEntityType()->getKey('revision_translation_affected');
diff --git a/core/lib/Drupal/Core/Mail/MailManager.php b/core/lib/Drupal/Core/Mail/MailManager.php
index 647d85291402efd76fc4d82f46281369f41d20c5..62187173839b87dd9e8fe14a5966f65604bcaad3 100644
--- a/core/lib/Drupal/Core/Mail/MailManager.php
+++ b/core/lib/Drupal/Core/Mail/MailManager.php
@@ -312,7 +312,7 @@ public function doMail($module, $key, $to, $langcode, $params = [], $reply = NUL
             ->error('Error sending email (from %from to %to with reply-to %reply).', [
               '%from' => $message['from'],
               '%to' => $message['to'],
-              '%reply' => $message['reply-to'] ? $message['reply-to'] : $this->t('not set'),
+              '%reply' => $message['reply-to'] ?: $this->t('not set'),
             ]);
           $error_message = $params['_error_message'] ?? $this->t('Unable to send email. Contact the site administrator if the problem persists.');
           if ($error_message) {
diff --git a/core/lib/Drupal/Core/Path/PathValidator.php b/core/lib/Drupal/Core/Path/PathValidator.php
index bd54f3f2c2f47b92f658ea8961d406596b207ce0..99b44a58e958c2cceecb7971bb0bb7da7c4fbfe7 100644
--- a/core/lib/Drupal/Core/Path/PathValidator.php
+++ b/core/lib/Drupal/Core/Path/PathValidator.php
@@ -159,7 +159,7 @@ protected function getPathAttributes($path, Request $request, $access_check) {
       $router = $this->accessAwareRouter;
     }
 
-    $initial_request_context = $router->getContext() ? $router->getContext() : new RequestContext();
+    $initial_request_context = $router->getContext() ?: new RequestContext();
     $path = $this->pathProcessor->processInbound('/' . $path, $request);
 
     try {
diff --git a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
index 20cf37cf28f66bacb0ac72c5d7319440be1aa9b9..b7990f123457dd5a661f0033e946e3464d57aa62 100644
--- a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
@@ -235,7 +235,7 @@ public function stream_close() {
    * {@inheritdoc}
    */
   public function stream_cast($cast_as) {
-    return $this->handle ? $this->handle : FALSE;
+    return $this->handle ?: FALSE;
   }
 
   /**
diff --git a/core/lib/Drupal/Core/Utility/token.api.php b/core/lib/Drupal/Core/Utility/token.api.php
index b272d06ddb46a16b96a9e5c52aa912303fe90303..227335d1786091cc8c7aaff6dd399ed456cd4fed 100644
--- a/core/lib/Drupal/Core/Utility/token.api.php
+++ b/core/lib/Drupal/Core/Utility/token.api.php
@@ -105,7 +105,7 @@ function hook_tokens($type, $tokens, array $data, array $options, \Drupal\Core\R
 
         // Default values for the chained tokens handled below.
         case 'author':
-          $account = $node->getOwner() ? $node->getOwner() : User::load(0);
+          $account = $node->getOwner() ?: User::load(0);
           $replacements[$original] = $account->label();
           $bubbleable_metadata->addCacheableDependency($account);
           break;
diff --git a/core/lib/Drupal/Core/Validation/DrupalTranslator.php b/core/lib/Drupal/Core/Validation/DrupalTranslator.php
index f94d26e2e874ecf0e06bd484ebd58f6387f24915..1677e368ae44d61d695c84c917e443514eccc6d0 100644
--- a/core/lib/Drupal/Core/Validation/DrupalTranslator.php
+++ b/core/lib/Drupal/Core/Validation/DrupalTranslator.php
@@ -67,7 +67,7 @@ public function setLocale($locale) {
    * {@inheritdoc}
    */
   public function getLocale() {
-    return $this->locale ? $this->locale : \Drupal::languageManager()->getCurrentLanguage()->getId();
+    return $this->locale ?: \Drupal::languageManager()->getCurrentLanguage()->getId();
   }
 
   /**
diff --git a/core/modules/field/src/Plugin/migrate/process/d7/FieldBundle.php b/core/modules/field/src/Plugin/migrate/process/d7/FieldBundle.php
index 2bee0b4e5d958c83e58f67e87ea7a5a247d108eb..686be80cceaae24d325272046491b38a8ead65d5 100644
--- a/core/modules/field/src/Plugin/migrate/process/d7/FieldBundle.php
+++ b/core/modules/field/src/Plugin/migrate/process/d7/FieldBundle.php
@@ -110,7 +110,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
         $lookup_result = empty($lookup_result) ? NULL : reset($lookup_result[0]);
       }
     }
-    return $lookup_result ? $lookup_result : $bundle;
+    return $lookup_result ?: $bundle;
   }
 
 }
diff --git a/core/modules/field_ui/src/Element/FieldUiTable.php b/core/modules/field_ui/src/Element/FieldUiTable.php
index 0d27accb4e3df91c798a37af480b4d805af4ee65..d830d77566819a73aed23e9684199b470180526f 100644
--- a/core/modules/field_ui/src/Element/FieldUiTable.php
+++ b/core/modules/field_ui/src/Element/FieldUiTable.php
@@ -227,7 +227,7 @@ public static function preRenderRegionRows($elements) {
    *   Array where rendering order has been determined.
    */
   public static function reduceOrder($array, $a) {
-    $array = !$array ? [] : $array;
+    $array = $array ?: [];
     if (!empty($a['name'])) {
       $array[] = $a['name'];
     }
diff --git a/core/modules/locale/locale.bulk.inc b/core/modules/locale/locale.bulk.inc
index 179906e96f85c3dc324f90b8a15fb8cd56269ec8..07f9eeceb951b06853d6583d7e502e594c52bdb1 100644
--- a/core/modules/locale/locale.bulk.inc
+++ b/core/modules/locale/locale.bulk.inc
@@ -89,8 +89,8 @@ function locale_translate_batch_import_files(array $options, $force = FALSE) {
 function locale_translate_get_interface_translation_files(array $projects = [], array $langcodes = []) {
   \Drupal::moduleHandler()->loadInclude('locale', 'inc', 'locale.compare');
   $files = [];
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   // Scan the translations directory for files matching a name pattern
   // containing a project name and language code: {project}.{langcode}.po or
@@ -547,7 +547,7 @@ function locale_translate_delete_translation_files(array $projects = [], array $
  *   The batch definition.
  */
 function locale_config_batch_update_components(array $options, array $langcodes = [], array $components = [], bool $update_default_config_langcodes = FALSE) {
-  $langcodes = $langcodes ? $langcodes : array_keys(\Drupal::languageManager()->getLanguages());
+  $langcodes = $langcodes ?: array_keys(\Drupal::languageManager()->getLanguages());
   if ($langcodes && $names = \Drupal::service('locale.config_manager')->getComponentNames($components)) {
     // If the component list is empty we need to ensure that all configuration
     // in the default collection is using the site's default langcode.
diff --git a/core/modules/locale/locale.compare.inc b/core/modules/locale/locale.compare.inc
index 039e416ff753911e771224e79061d9964e592593..1fe39a8dcfe54aa8a4111bff69f0278786d5670a 100644
--- a/core/modules/locale/locale.compare.inc
+++ b/core/modules/locale/locale.compare.inc
@@ -227,8 +227,8 @@ function locale_translation_check_projects_batch($projects = [], $langcodes = []
  *   Batch definition array.
  */
 function locale_translation_batch_status_build($projects = [], $langcodes = []) {
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
   $options = _locale_translation_default_update_options();
 
   $operations = _locale_translation_batch_status_operations($projects, $langcodes, $options);
@@ -294,7 +294,7 @@ function _locale_translation_batch_status_operations($projects, $langcodes, $opt
  */
 function locale_translation_check_projects_local($projects = [], $langcodes = []) {
   $projects = locale_translation_get_projects($projects);
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   // For each project and each language we check if a local po file is
   // available. When found the source object is updated with the appropriate
diff --git a/core/modules/locale/locale.fetch.inc b/core/modules/locale/locale.fetch.inc
index 25b657f8abacc5b6766eb551bca0613dbefbc74f..417f2d17a44890551ed29d9f6544a3228b0e3e96 100644
--- a/core/modules/locale/locale.fetch.inc
+++ b/core/modules/locale/locale.fetch.inc
@@ -31,8 +31,8 @@
 #[StopProceduralHookScan]
 function locale_translation_batch_update_build($projects = [], $langcodes = [], $options = []) {
   \Drupal::moduleHandler()->loadInclude('locale', 'inc', 'locale.compare');
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
   $status_options = $options;
   $status_options['finish_feedback'] = FALSE;
 
@@ -67,8 +67,8 @@ function locale_translation_batch_update_build($projects = [], $langcodes = [],
  *   Batch definition array.
  */
 function locale_translation_batch_fetch_build($projects = [], $langcodes = [], $options = []) {
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   $batch_builder = (new BatchBuilder())
     ->setTitle(t('Updating translations.'))
diff --git a/core/modules/locale/locale.module b/core/modules/locale/locale.module
index 57b662e484f214b508921b600d00423f25ff24f8..69bafff84c4b83641c211a0a0965fcd0c72929ce 100644
--- a/core/modules/locale/locale.module
+++ b/core/modules/locale/locale.module
@@ -178,7 +178,7 @@ function locale_get_plural($count, $langcode = NULL) {
   // individually for each language.
   $plural_indexes = &drupal_static(__FUNCTION__ . ':plurals', []);
 
-  $langcode = $langcode ? $langcode : $language_interface->getId();
+  $langcode = $langcode ?: $language_interface->getId();
 
   if (!isset($plural_indexes[$langcode][$count])) {
     // Retrieve and statically cache the plural formulas for all languages.
@@ -545,8 +545,8 @@ function locale_translation_get_status($projects = NULL, $langcodes = NULL) {
   $result = [];
   $status = \Drupal::keyValue('locale.translation_status')->getAll();
   \Drupal::moduleHandler()->loadInclude('locale', 'inc', 'locale.translation');
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   // Get the translation status of each project-language combination. If no
   // status was stored, a new translation source is created.
diff --git a/core/modules/locale/locale.translation.inc b/core/modules/locale/locale.translation.inc
index 7bb8502c53f3e7f174360358ebd73b527eeb8834..66f4b12cb98c05c3758a373151cd251806685f90 100644
--- a/core/modules/locale/locale.translation.inc
+++ b/core/modules/locale/locale.translation.inc
@@ -104,8 +104,8 @@ function locale_translation_clear_cache_projects() {
  */
 function locale_translation_load_sources(?array $projects = NULL, ?array $langcodes = NULL) {
   $sources = [];
-  $projects = $projects ? $projects : array_keys(locale_translation_get_projects());
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $projects = $projects ?: array_keys(locale_translation_get_projects());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   // Load source data from locale_translation_status cache.
   $status = locale_translation_get_status();
@@ -135,7 +135,7 @@ function locale_translation_load_sources(?array $projects = NULL, ?array $langco
 function locale_translation_build_sources(array $projects = [], array $langcodes = []) {
   $sources = [];
   $projects = locale_translation_get_projects($projects);
-  $langcodes = $langcodes ? $langcodes : array_keys(locale_translatable_language_list());
+  $langcodes = $langcodes ?: array_keys(locale_translatable_language_list());
 
   foreach ($projects as $project) {
     foreach ($langcodes as $langcode) {
@@ -243,7 +243,7 @@ function locale_translation_source_build($project, $langcode, $filename = NULL)
   $source->timestamp = 0;
   $source->last_checked = 0;
 
-  $filename = $filename ? $filename : \Drupal::config('locale.settings')->get('translation.default_filename');
+  $filename = $filename ?: \Drupal::config('locale.settings')->get('translation.default_filename');
 
   // If the server_pattern contains a remote file path we will check for a
   // remote file. The local version of this file will only be checked if a
diff --git a/core/modules/locale/src/LocaleConfigManager.php b/core/modules/locale/src/LocaleConfigManager.php
index ea23db17307e5fe005f7f0c2b7a23ed63c5656cb..85aea64720085462993c2292248d1fc7141fcae4 100644
--- a/core/modules/locale/src/LocaleConfigManager.php
+++ b/core/modules/locale/src/LocaleConfigManager.php
@@ -564,7 +564,7 @@ public function isUpdatingTranslationsFromLocale() {
    *   updated (saved or removed).
    */
   public function updateConfigTranslations(array $names, array $langcodes = []) {
-    $langcodes = $langcodes ? $langcodes : array_keys($this->languageManager->getLanguages());
+    $langcodes = $langcodes ?: array_keys($this->languageManager->getLanguages());
     $count = 0;
     foreach ($names as $name) {
       $translatable = $this->getTranslatableDefaultConfig($name);
diff --git a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php
index 7093ba3642a260c5b6a5f454a837aabbf8c1c9f6..879981d2f363ad2f41311a66b5c401b8e4158d83 100644
--- a/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php
+++ b/core/modules/locale/tests/src/Functional/LocaleUpdateBase.php
@@ -111,7 +111,7 @@ protected function addLanguage($langcode) {
    *   in source and translations strings.
    */
   protected function makePoFile($path, $filename, $timestamp = NULL, array $translations = []) {
-    $timestamp = $timestamp ? $timestamp : \Drupal::time()->getRequestTime();
+    $timestamp = $timestamp ?: \Drupal::time()->getRequestTime();
     $path = 'public://' . $path;
     $text = '';
     $po_header = <<<EOF
diff --git a/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php b/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php
index f5c37efcfa8968e171df28d6d2a315246d1f9d05..46775c5de0f5b803c1388fcc30ff2ac0646ed4cf 100644
--- a/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php
+++ b/core/modules/migrate/src/Plugin/migrate/id_map/Sql.php
@@ -560,7 +560,7 @@ public function getRowByDestination(array $destination_id_values) {
       $query->condition("map.$destination_id", $destination_id_values[$field_name], '=');
     }
     $result = $query->execute()->fetchAssoc();
-    return $result ? $result : [];
+    return $result ?: [];
   }
 
   /**
diff --git a/core/modules/migrate_drupal_ui/src/Batch/MigrateUpgradeImportBatch.php b/core/modules/migrate_drupal_ui/src/Batch/MigrateUpgradeImportBatch.php
index 18e1bdeeb35b71d412d91a7301c13abbe4eec9bb..a8dca13f619974d4b0a0bc4d169074e65a5f9908 100644
--- a/core/modules/migrate_drupal_ui/src/Batch/MigrateUpgradeImportBatch.php
+++ b/core/modules/migrate_drupal_ui/src/Batch/MigrateUpgradeImportBatch.php
@@ -134,7 +134,7 @@ public static function run($initial_ids, $config, &$context) {
       static::$messages = new MigrateMessageCapture();
       $executable = new MigrateExecutable($migration, static::$messages);
 
-      $migration_name = $migration->label() ? $migration->label() : $migration_id;
+      $migration_name = $migration->label() ?: $migration_id;
 
       try {
         $migration_status = $executable->import();
@@ -230,7 +230,7 @@ public static function run($initial_ids, $config, &$context) {
       if (!empty($context['sandbox']['migration_ids'])) {
         $migration_id = reset($context['sandbox']['migration_ids']);
         $migration = \Drupal::service('plugin.manager.migration')->createInstance($migration_id);
-        $migration_name = $migration->label() ? $migration->label() : $migration_id;
+        $migration_name = $migration->label() ?: $migration_id;
         $context['message'] = (string) new TranslatableMarkup('Currently upgrading @migration (@current of @max total tasks)', [
           '@migration' => $migration_name,
           '@current' => $context['sandbox']['current'],
diff --git a/core/modules/node/src/Hook/NodeTokensHooks.php b/core/modules/node/src/Hook/NodeTokensHooks.php
index 63aecb49c344ecbfaf40d3884f3b74ea272a24c2..6fbbf2f65eae86de39450d77909cd4ede9e2fa43 100644
--- a/core/modules/node/src/Hook/NodeTokensHooks.php
+++ b/core/modules/node/src/Hook/NodeTokensHooks.php
@@ -165,7 +165,7 @@ public function tokens($type, $tokens, array $data, array $options, BubbleableMe
 
           // Default values for the chained tokens handled below.
           case 'author':
-            $account = $node->getOwner() ? $node->getOwner() : User::load(0);
+            $account = $node->getOwner() ?: User::load(0);
             $bubbleable_metadata->addCacheableDependency($account);
             $replacements[$original] = $account->label();
             break;
diff --git a/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php b/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php
index ae81f42a9e98c728eed51ea8799abdc2411d1a53..e8313f5ad375bd25a2d1ec4cfb4422e34525c848 100644
--- a/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php
+++ b/core/modules/shortcut/tests/src/Functional/ShortcutLinksTest.php
@@ -488,7 +488,7 @@ public function testShortcutBlockAccess(): void {
    */
   protected function assertShortcutQuickLink(string $label, int $index = 0, string $message = ''): void {
     $links = $this->xpath('//a[normalize-space()=:label]', [':label' => $label]);
-    $message = ($message ? $message : (string) new FormattableMarkup('Shortcut quick link with label %label found.', ['%label' => $label]));
+    $message = ($message ?: (string) new FormattableMarkup('Shortcut quick link with label %label found.', ['%label' => $label]));
     $this->assertArrayHasKey($index, $links, $message);
   }
 
diff --git a/core/modules/system/src/Controller/TimezoneController.php b/core/modules/system/src/Controller/TimezoneController.php
index 98db992468654785fb7f6be94315dfa28f293905..cfb359943ae31983530f307c40f90528bd5d02b6 100644
--- a/core/modules/system/src/Controller/TimezoneController.php
+++ b/core/modules/system/src/Controller/TimezoneController.php
@@ -45,7 +45,7 @@ public function getTimezone($abbreviation = '', $offset = -1, $is_daylight_savin
 
     // An abbreviation of "0" passed in the callback arguments should be
     // interpreted as the empty string.
-    $abbreviation = $abbreviation ? $abbreviation : '';
+    $abbreviation = $abbreviation ?: '';
     $timezone = timezone_name_from_abbr($abbreviation, $offset, $is_daylight_saving_time);
     return new JsonResponse($timezone);
   }
diff --git a/core/modules/system/src/Form/FileSystemForm.php b/core/modules/system/src/Form/FileSystemForm.php
index d5aa07b7ce28180286fdb548ee739175e5792815..9f51e6a8c52b97e205e5aa62f67f8cfca11bfe19 100644
--- a/core/modules/system/src/Form/FileSystemForm.php
+++ b/core/modules/system/src/Form/FileSystemForm.php
@@ -114,7 +114,7 @@ public function buildForm(array $form, FormStateInterface $form_state) {
     $form['file_private_path'] = [
       '#type' => 'item',
       '#title' => $this->t('Private file system path'),
-      '#markup' => (PrivateStream::basePath() ? PrivateStream::basePath() : $this->t('Not set')),
+      '#markup' => (PrivateStream::basePath() ?: $this->t('Not set')),
       '#description' => $this->t('An existing local file system path for storing private files. It should be writable by Drupal and not accessible over the web. This must be changed in settings.php'),
     ];
 
diff --git a/core/modules/system/src/Form/ThemeExperimentalConfirmForm.php b/core/modules/system/src/Form/ThemeExperimentalConfirmForm.php
index ed3c71e6ccd12248d5deb97c63a3a1e43a4f8855..11545d020b94a17a1240bd18d84b2210b97e2314 100644
--- a/core/modules/system/src/Form/ThemeExperimentalConfirmForm.php
+++ b/core/modules/system/src/Form/ThemeExperimentalConfirmForm.php
@@ -94,7 +94,7 @@ public function getFormId() {
    * {@inheritdoc}
    */
   public function buildForm(array $form, FormStateInterface $form_state) {
-    $theme = $form_state->getBuildInfo()['args'][0] ? $form_state->getBuildInfo()['args'][0] : NULL;
+    $theme = $form_state->getBuildInfo()['args'][0] ?: NULL;
     $all_themes = $this->themeList->getList();
     if (!isset($all_themes[$theme])) {
       return $this->redirect('system.themes_page');
diff --git a/core/modules/system/tests/modules/entity_test/src/EntityTestHelper.php b/core/modules/system/tests/modules/entity_test/src/EntityTestHelper.php
index 1a99b320d1b0a691042de9e1aa488c39c117741e..9b9c3cedd5422f13078dfc8087e5c68885913e86 100644
--- a/core/modules/system/tests/modules/entity_test/src/EntityTestHelper.php
+++ b/core/modules/system/tests/modules/entity_test/src/EntityTestHelper.php
@@ -70,7 +70,7 @@ public static function getEntityTypes($filter = NULL): array {
    */
   public static function createBundle($bundle, $text = NULL, $entity_type = 'entity_test'): void {
     $bundles = \Drupal::state()->get($entity_type . '.bundles', [$entity_type => ['label' => 'Entity Test Bundle']]);
-    $bundles += [$bundle => ['label' => $text ? $text : $bundle]];
+    $bundles += [$bundle => ['label' => $text ?: $bundle]];
     \Drupal::state()->set($entity_type . '.bundles', $bundles);
     \Drupal::service('entity_bundle.listener')->onBundleCreate($bundle, $entity_type);
   }
diff --git a/core/modules/system/tests/modules/pager_test/src/Controller/PagerTestController.php b/core/modules/system/tests/modules/pager_test/src/Controller/PagerTestController.php
index 6d8b65d3f611187424385a646ce7b135605acf1a..71ee3dc613bad71ffb85cbc9d8592d6334497f08 100644
--- a/core/modules/system/tests/modules/pager_test/src/Controller/PagerTestController.php
+++ b/core/modules/system/tests/modules/pager_test/src/Controller/PagerTestController.php
@@ -88,7 +88,7 @@ public function queryParameters() {
 
     // Counter of calls to the current pager.
     $query_params = $this->pagerParams->getQueryParameters();
-    $pager_calls = isset($query_params['pager_calls']) ? ($query_params['pager_calls'] ? $query_params['pager_calls'] : 0) : 0;
+    $pager_calls = isset($query_params['pager_calls']) ? ($query_params['pager_calls'] ?: 0) : 0;
     $build['l_pager_pager_0'] = ['#markup' => $this->t('Pager calls: @pager_calls', ['@pager_calls' => $pager_calls])];
 
     // Pager.
diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
index 3615d6c024b58bce05bdd7d723b48ebcdf175ec4..8eb550ff9f032d18324e3d98fac58fb2a6062219 100644
--- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
+++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php
@@ -1342,7 +1342,7 @@ public function renderText($alter) {
       $value = $this->renderTrimText($alter, $value);
       if ($this->options['alter']['more_link'] && strlen($value) < $length) {
         $tokens = $this->getRenderTokens($alter);
-        $more_link_text = $this->options['alter']['more_link_text'] ? $this->options['alter']['more_link_text'] : $this->t('more');
+        $more_link_text = $this->options['alter']['more_link_text'] ?: $this->t('more');
         $more_link_text = strtr(Xss::filterAdmin($more_link_text), $tokens);
         $more_link_path = $this->options['alter']['more_link_path'];
         $more_link_path = strip_tags(Html::decodeEntities($this->viewsTokenReplace($more_link_path, $tokens)));
diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php
index 94ec74338cad28499294b2d8afa597cd1423fb3d..9e6d548c68e471f4ddc82aa2312c01ac046c6d78 100644
--- a/core/modules/views/src/Plugin/views/query/Sql.php
+++ b/core/modules/views/src/Plugin/views/query/Sql.php
@@ -881,7 +881,7 @@ public function addField($table, $field, $alias = '', $params = []) {
     }
 
     // Make sure an alias is assigned
-    $alias = $alias ? $alias : $field;
+    $alias = $alias ?: $field;
 
     // PostgreSQL truncates aliases to 63 characters:
     // https://www.drupal.org/node/571548.
diff --git a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
index dacea1a287d1914cc62051fe4a9de383b3c69ff7..015d46a20a9fba5550f8db02c307a081b8593beb 100644
--- a/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
+++ b/core/modules/views/tests/src/Functional/Handler/FieldWebTest.php
@@ -208,7 +208,7 @@ protected function xpathContent($content, $xpath, array $arguments = []) {
       // Some combinations of PHP / libxml versions return an empty array
       // instead of the documented FALSE. Forcefully convert any falsy values
       // to an empty array to allow foreach(...) constructions.
-      return $result ? $result : [];
+      return $result ?: [];
     }
     else {
       return FALSE;
diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist
index f7bc6bf04b7de64b404c954a6e6219fc9610bbe0..4b42c73f487371a0792f5d0b4f97f648e941d360 100644
--- a/core/phpcs.xml.dist
+++ b/core/phpcs.xml.dist
@@ -282,6 +282,7 @@
     </properties>
   </rule>
   <rule ref="SlevomatCodingStandard.ControlStructures.RequireNullCoalesceOperator"/>
+  <rule ref="SlevomatCodingStandard.ControlStructures.RequireShortTernaryOperator"/>
   <rule ref="SlevomatCodingStandard.Exceptions.RequireNonCapturingCatch" />
   <rule ref="SlevomatCodingStandard.TypeHints.DeclareStrictTypes">
     <properties>
diff --git a/core/tests/Drupal/KernelTests/AssertContentTrait.php b/core/tests/Drupal/KernelTests/AssertContentTrait.php
index 34b7ccd97c5f548f4d1cc0c4e61135de51f5020d..80d6a41c6be49afc5e44d522a4429c4cc0b5a17f 100644
--- a/core/tests/Drupal/KernelTests/AssertContentTrait.php
+++ b/core/tests/Drupal/KernelTests/AssertContentTrait.php
@@ -284,7 +284,7 @@ protected function assertLink($label, $index = 0, $message = ''): bool {
     // Cast MarkupInterface objects to string.
     $label = (string) $label;
     $links = $this->xpath('//a[normalize-space(text())=:label]', [':label' => $label]);
-    $message = ($message ? $message : strtr('Link with label %label found.', ['%label' => $label]));
+    $message = ($message ?: strtr('Link with label %label found.', ['%label' => $label]));
     $this->assertArrayHasKey($index, $links, $message);
     return TRUE;
   }
@@ -360,7 +360,7 @@ protected function assertLinkByHref($href, $index = 0, $message = ''): bool {
   protected function assertNoLinkByHref($href, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
     $links = $this->xpath('//a[contains(@href, :href)]', [':href' => $href]);
-    $message = ($message ? $message : new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
+    $message = ($message ?: new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
     $this->assertEmpty($links, $message);
     return TRUE;
   }
@@ -388,7 +388,7 @@ protected function assertNoLinkByHref($href, $message = ''): bool {
   protected function assertNoLinkByHrefInMainRegion($href, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
     $links = $this->xpath('//main//a[contains(@href, :href)]', [':href' => $href]);
-    $message = ($message ? $message : new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
+    $message = ($message ?: new FormattableMarkup('No link containing href %href found.', ['%href' => $href]));
     $this->assertEmpty($links, $message);
     return TRUE;
   }
@@ -1022,7 +1022,7 @@ protected function assertFieldByName($name, $value = NULL, $message = NULL): boo
    */
   protected function assertNoFieldByName($name, $value = '', $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $name), $value, $message ? $message : new FormattableMarkup('Did not find field by name @name', ['@name' => $name]));
+    return $this->assertNoFieldByXPath($this->constructFieldXpath('name', $name), $value, $message ?: new FormattableMarkup('Did not find field by name @name', ['@name' => $name]));
   }
 
   /**
@@ -1057,7 +1057,7 @@ protected function assertFieldById($id, $value = '', $message = ''): bool {
       $value = (string) $value;
     }
     $message = (string) $message;
-    return $this->assertFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : new FormattableMarkup('Found field by id @id', ['@id' => $id]));
+    return $this->assertFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ?: new FormattableMarkup('Found field by id @id', ['@id' => $id]));
   }
 
   /**
@@ -1087,7 +1087,7 @@ protected function assertFieldById($id, $value = '', $message = ''): bool {
    */
   protected function assertNoFieldById($id, $value = '', $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    return $this->assertNoFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ? $message : new FormattableMarkup('Did not find field by id @id', ['@id' => $id]));
+    return $this->assertNoFieldByXPath($this->constructFieldXpath('id', $id), $value, $message ?: new FormattableMarkup('Did not find field by id @id', ['@id' => $id]));
   }
 
   /**
@@ -1112,7 +1112,7 @@ protected function assertNoFieldById($id, $value = '', $message = ''): bool {
    */
   protected function assertFieldChecked($id, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Checkbox field @id is checked.', ['@id' => $id]);
+    $message = $message ?: new FormattableMarkup('Checkbox field @id is checked.', ['@id' => $id]);
     $elements = $this->xpath('//input[@id=:id]', [':id' => $id]);
     $this->assertNotEmpty($elements, $message);
     $this->assertNotEmpty($elements[0]['checked'], $message);
@@ -1141,7 +1141,7 @@ protected function assertFieldChecked($id, $message = ''): bool {
    */
   protected function assertNoFieldChecked($id, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Checkbox field @id is not checked.', ['@id' => $id]);
+    $message = $message ?: new FormattableMarkup('Checkbox field @id is not checked.', ['@id' => $id]);
     $elements = $this->xpath('//input[@id=:id]', [':id' => $id]);
     $this->assertNotEmpty($elements, $message);
     $this->assertEmpty($elements[0]['checked'], $message);
@@ -1165,7 +1165,7 @@ protected function assertNoFieldChecked($id, $message = ''): bool {
   protected function assertOption($id, $option, $message = '') {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
     $options = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
-    $this->assertTrue(isset($options[0]), $message ? $message : new FormattableMarkup('Option @option for field @id exists.', ['@option' => $option, '@id' => $id]));
+    $this->assertTrue(isset($options[0]), $message ?: new FormattableMarkup('Option @option for field @id exists.', ['@option' => $option, '@id' => $id]));
   }
 
   /**
@@ -1206,7 +1206,7 @@ protected function assertOptionByText($id, $text, $message = '') {
   protected function assertOptionWithDrupalSelector($drupal_selector, $option, $message = '') {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
     $options = $this->xpath('//select[@data-drupal-selector=:data_drupal_selector]//option[@value=:option]', [':data_drupal_selector' => $drupal_selector, ':option' => $option]);
-    $this->assertTrue(isset($options[0]), $message ? $message : new FormattableMarkup('Option @option for field @data_drupal_selector exists.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]));
+    $this->assertTrue(isset($options[0]), $message ?: new FormattableMarkup('Option @option for field @data_drupal_selector exists.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]));
   }
 
   /**
@@ -1233,7 +1233,7 @@ protected function assertOptionWithDrupalSelector($drupal_selector, $option, $me
    */
   protected function assertNoOption($id, $option, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Option @option for field @id does not exist.', ['@option' => $option, '@id' => $id]);
+    $message = $message ?: new FormattableMarkup('Option @option for field @id does not exist.', ['@option' => $option, '@id' => $id]);
     $selects = $this->xpath('//select[@id=:id]', [':id' => $id]);
     $options = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
     $this->assertArrayHasKey(0, $selects, $message);
@@ -1267,7 +1267,7 @@ protected function assertNoOption($id, $option, $message = ''): bool {
    */
   protected function assertOptionSelected($id, $option, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Option @option for field @id is selected.', ['@option' => $option, '@id' => $id]);
+    $message = $message ?: new FormattableMarkup('Option @option for field @id is selected.', ['@option' => $option, '@id' => $id]);
     $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
     $this->assertNotEmpty($elements, $message);
     $this->assertNotEmpty($elements[0]['selected'], $message);
@@ -1300,7 +1300,7 @@ protected function assertOptionSelected($id, $option, $message = ''): bool {
    */
   protected function assertOptionSelectedWithDrupalSelector($drupal_selector, $option, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Option @option for field @data_drupal_selector is selected.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]);
+    $message = $message ?: new FormattableMarkup('Option @option for field @data_drupal_selector is selected.', ['@option' => $option, '@data_drupal_selector' => $drupal_selector]);
     $elements = $this->xpath('//select[@data-drupal-selector=:data_drupal_selector]//option[@value=:option]', [':data_drupal_selector' => $drupal_selector, ':option' => $option]);
     $this->assertNotEmpty($elements, $message);
     $this->assertNotEmpty($elements[0]['selected'], $message);
@@ -1331,7 +1331,7 @@ protected function assertOptionSelectedWithDrupalSelector($drupal_selector, $opt
    */
   protected function assertNoOptionSelected($id, $option, $message = ''): bool {
     @trigger_error(__METHOD__ . '() is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3476110', E_USER_DEPRECATED);
-    $message = $message ? $message : new FormattableMarkup('Option @option for field @id is not selected.', ['@option' => $option, '@id' => $id]);
+    $message = $message ?: new FormattableMarkup('Option @option for field @id is not selected.', ['@option' => $option, '@id' => $id]);
     $elements = $this->xpath('//select[@id=:id]//option[@value=:option]', [':id' => $id, ':option' => $option]);
     $this->assertNotEmpty($elements, $message);
     $this->assertEmpty($elements[0]['selected'], $message);
diff --git a/core/tests/Drupal/Tests/WebAssert.php b/core/tests/Drupal/Tests/WebAssert.php
index fd89b05f6bc7402f5128c56839a88a36a79af87c..248da850b7cb441f2f9372c5514aba879219d5ce 100644
--- a/core/tests/Drupal/Tests/WebAssert.php
+++ b/core/tests/Drupal/Tests/WebAssert.php
@@ -308,7 +308,7 @@ public function titleEquals($expected_title) {
    *   Thrown when element doesn't exist, or the link label is a different one.
    */
   public function linkExists($label, $index = 0, $message = '') {
-    $message = ($message ? $message : strtr('Link with label %label not found.', ['%label' => $label]));
+    $message = ($message ?: strtr('Link with label %label not found.', ['%label' => $label]));
     $links = $this->session->getPage()->findAll('named', ['link', $label]);
     $this->assert(!empty($links[$index]), $message);
   }
@@ -331,7 +331,7 @@ public function linkExists($label, $index = 0, $message = '') {
    *   Thrown when element doesn't exist, or the link label is a different one.
    */
   public function linkExistsExact($label, $index = 0, $message = '') {
-    $message = ($message ? $message : strtr('Link with label %label not found.', ['%label' => $label]));
+    $message = ($message ?: strtr('Link with label %label not found.', ['%label' => $label]));
     $links = $this->session->getPage()->findAll('named_exact', ['link', $label]);
     $this->assert(!empty($links[$index]), $message);
   }
@@ -352,7 +352,7 @@ public function linkExistsExact($label, $index = 0, $message = '') {
    *   Thrown when element doesn't exist, or the link label is a different one.
    */
   public function linkNotExists($label, $message = '') {
-    $message = ($message ? $message : strtr('Link with label %label found.', ['%label' => $label]));
+    $message = ($message ?: strtr('Link with label %label found.', ['%label' => $label]));
     $links = $this->session->getPage()->findAll('named', ['link', $label]);
     $this->assert(empty($links), $message);
   }
@@ -373,7 +373,7 @@ public function linkNotExists($label, $message = '') {
    *   Thrown when element doesn't exist, or the link label is a different one.
    */
   public function linkNotExistsExact($label, $message = '') {
-    $message = ($message ? $message : strtr('Link with label %label found.', ['%label' => $label]));
+    $message = ($message ?: strtr('Link with label %label found.', ['%label' => $label]));
     $links = $this->session->getPage()->findAll('named_exact', ['link', $label]);
     $this->assert(empty($links), $message);
   }
@@ -397,7 +397,7 @@ public function linkNotExistsExact($label, $message = '') {
    */
   public function linkByHrefExists($href, $index = 0, $message = '') {
     $xpath = $this->buildXPathQuery('//a[contains(@href, :href)]', [':href' => $href]);
-    $message = ($message ? $message : strtr('No link containing href %href found.', ['%href' => $href]));
+    $message = ($message ?: strtr('No link containing href %href found.', ['%href' => $href]));
     $links = $this->session->getPage()->findAll('xpath', $xpath);
     $this->assert(!empty($links[$index]), $message);
   }
@@ -443,7 +443,7 @@ public function linkByHrefExistsExact(string $href, int $index = 0, string $mess
    */
   public function linkByHrefNotExists($href, $message = '') {
     $xpath = $this->buildXPathQuery('//a[contains(@href, :href)]', [':href' => $href]);
-    $message = ($message ? $message : strtr('Link containing href %href found.', ['%href' => $href]));
+    $message = ($message ?: strtr('Link containing href %href found.', ['%href' => $href]));
     $links = $this->session->getPage()->findAll('xpath', $xpath);
     $this->assert(empty($links), $message);
   }