diff options
author | Lee Rowlands <lee.rowlands@previousnext.com.au> | 2023-12-13 08:27:06 +1000 |
---|---|---|
committer | Lee Rowlands <lee.rowlands@previousnext.com.au> | 2023-12-13 08:27:06 +1000 |
commit | 5247e64236e69d3af62168068d0e80077ed9e71f (patch) | |
tree | 0c99bb0f02eea6c2f7237fd78cd691d4a9a68084 /core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php | |
parent | d719097a83ee7b074bfdb83c087bdaee63c02418 (diff) | |
download | drupal-5247e64236e69d3af62168068d0e80077ed9e71f.tar.gz drupal-5247e64236e69d3af62168068d0e80077ed9e71f.zip |
Issue #3400018 by mstrelan, xjm: Add declare(strict_types=1) to all Functional JavaScript tests
Diffstat (limited to 'core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php')
-rw-r--r-- | core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php b/core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php index 85a171b2a342..ecf579c8cb49 100644 --- a/core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php +++ b/core/tests/Drupal/FunctionalJavascriptTests/BrowserWithJavascriptTest.php @@ -1,5 +1,7 @@ <?php +declare(strict_types=1); + namespace Drupal\FunctionalJavascriptTests; use PHPUnit\Framework\AssertionFailedError; |