Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / psy / psysh / test / CodeCleaner / ValidConstantPassTest.php
similarity index 58%
rename from vendor/psy/psysh/test/Psy/Test/CodeCleaner/ValidConstantPassTest.php
rename to vendor/psy/psysh/test/CodeCleaner/ValidConstantPassTest.php
index c06139c73b012300c7abafd806869a35df7b65b9..a6c52e0419d8f5c8f52e86b98191a294c82a0f55 100644 (file)
@@ -3,7 +3,7 @@
 /*
  * This file is part of Psy Shell.
  *
- * (c) 2012-2017 Justin Hileman
+ * (c) 2012-2018 Justin Hileman
  *
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
@@ -26,19 +26,18 @@ class ValidConstantPassTest extends CodeCleanerTestCase
      */
     public function testProcessInvalidConstantReferences($code)
     {
-        $stmts = $this->parse($code);
-        $this->traverse($stmts);
+        $this->parseAndTraverse($code);
     }
 
     public function getInvalidReferences()
     {
-        return array(
-            array('Foo\BAR'),
+        return [
+            ['Foo\BAR'],
 
             // class constant fetch
-            array('Psy\Test\CodeCleaner\ValidConstantPassTest::FOO'),
-            array('DateTime::BACON'),
-        );
+            ['Psy\Test\CodeCleaner\ValidConstantPassTest::FOO'],
+            ['DateTime::BACON'],
+        ];
     }
 
     /**
@@ -46,24 +45,21 @@ class ValidConstantPassTest extends CodeCleanerTestCase
      */
     public function testProcessValidConstantReferences($code)
     {
-        $stmts = $this->parse($code);
-        $this->traverse($stmts);
-
-        // @todo a better thing to assert here?
+        $this->parseAndTraverse($code);
         $this->assertTrue(true);
     }
 
     public function getValidReferences()
     {
-        return array(
-            array('PHP_EOL'),
+        return [
+            ['PHP_EOL'],
 
             // class constant fetch
-            array('NotAClass::FOO'),
-            array('DateTime::ATOM'),
-            array('$a = new DateTime; $a::ATOM'),
-            array('DateTime::class'),
-            array('$a = new DateTime; $a::class'),
-        );
+            ['NotAClass::FOO'],
+            ['DateTime::ATOM'],
+            ['$a = new DateTime; $a::ATOM'],
+            ['DateTime::class'],
+            ['$a = new DateTime; $a::class'],
+        ];
     }
 }