Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / psy / psysh / test / Util / DocblockTest.php
similarity index 65%
rename from vendor/psy/psysh/test/Psy/Test/Util/DocblockTest.php
rename to vendor/psy/psysh/test/Util/DocblockTest.php
index 9ed3c02905027136c53f982a9cda98f76c0758ed..6fa775d92db52d9f7e66d75d53f2e46faeee3bd5 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.
@@ -31,7 +31,7 @@ class DocblockTest extends \PHPUnit\Framework\TestCase
 
         $docblock = new Docblock($reflector);
 
-        $this->assertEquals($body, $docblock->desc);
+        $this->assertSame($body, $docblock->desc);
 
         foreach ($tags as $tag => $value) {
             $this->assertTrue($docblock->hasTag($tag));
@@ -45,20 +45,20 @@ class DocblockTest extends \PHPUnit\Framework\TestCase
             $this->markTestSkipped('We have issues with PHPUnit mocks on HHVM.');
         }
 
-        return array(
-            array('', '', array()),
-            array(
+        return [
+            ['', '', []],
+            [
                 '/**
                  * This is a docblock
                  *
                  * @throws \Exception with a description
                  */',
                 'This is a docblock',
-                array(
-                    'throws' => array(array('type' => '\Exception', 'desc' => 'with a description')),
-                ),
-            ),
-            array(
+                [
+                    'throws' => [['type' => '\Exception', 'desc' => 'with a description']],
+                ],
+            ],
+            [
                 '/**
                  * This is a slightly longer docblock
                  *
@@ -69,18 +69,18 @@ class DocblockTest extends \PHPUnit\Framework\TestCase
                  * @return int At least it isn\'t a string
                  */',
                 'This is a slightly longer docblock',
-                array(
-                    'param' => array(
-                        array('type' => 'int', 'desc' => 'Is a Foo', 'var' => '$foo'),
-                        array('type' => 'string', 'desc' => 'With some sort of description', 'var' => '$bar'),
-                        array('type' => '\ClassName', 'desc' => 'is cool too', 'var' => '$baz'),
-                    ),
-                    'return' => array(
-                        array('type' => 'int', 'desc' => 'At least it isn\'t a string'),
-                    ),
-                ),
-            ),
-            array(
+                [
+                    'param' => [
+                        ['type' => 'int', 'desc' => 'Is a Foo', 'var' => '$foo'],
+                        ['type' => 'string', 'desc' => 'With some sort of description', 'var' => '$bar'],
+                        ['type' => '\ClassName', 'desc' => 'is cool too', 'var' => '$baz'],
+                    ],
+                    'return' => [
+                        ['type' => 'int', 'desc' => 'At least it isn\'t a string'],
+                    ],
+                ],
+            ],
+            [
                 '/**
                  * This is a docblock!
                  *
@@ -91,10 +91,10 @@ class DocblockTest extends \PHPUnit\Framework\TestCase
                  * @return
                  */',
                 "This is a docblock!\n\nIt spans lines, too!",
-                array(
-                    'tagname' => array('plus a description'),
-                ),
-            ),
-        );
+                [
+                    'tagname' => ['plus a description'],
+                ],
+            ],
+        ];
     }
 }