diff vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php @ 13:5fb285c0d0e3

Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've been lucky to get away with this so far, as we don't support self-registration which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5 was vulnerable to.
author Chris Cannam
date Mon, 23 Apr 2018 09:33:26 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
line wrap: on
line diff
--- a/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php	Fri Feb 23 15:52:07 2018 +0000
+++ b/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php	Mon Apr 23 09:33:26 2018 +0100
@@ -1,4 +1,4 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Builder;
 
@@ -7,8 +7,9 @@
 use PhpParser\Node\Name;
 use PhpParser\Node\Scalar;
 use PhpParser\Node\Stmt;
+use PHPUnit\Framework\TestCase;
 
-class PropertyTest extends \PHPUnit_Framework_TestCase
+class PropertyTest extends TestCase
 {
     public function createPropertyBuilder($name) {
         return new Property($name);
@@ -25,9 +26,9 @@
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PRIVATE
               | Stmt\Class_::MODIFIER_STATIC,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -40,9 +41,9 @@
         $this->assertEquals(
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PROTECTED,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -55,9 +56,9 @@
         $this->assertEquals(
             new Stmt\Property(
                 Stmt\Class_::MODIFIER_PUBLIC,
-                array(
+                [
                     new Stmt\PropertyProperty('test')
-                )
+                ]
             ),
             $node
         );
@@ -70,12 +71,12 @@
 
         $this->assertEquals(new Stmt\Property(
             Stmt\Class_::MODIFIER_PUBLIC,
-            array(
+            [
                 new Stmt\PropertyProperty('test')
-            ),
-            array(
-                'comments' => array(new Comment\Doc('/** Test */'))
-            )
+            ],
+            [
+                'comments' => [new Comment\Doc('/** Test */')]
+            ]
         ), $node);
     }
 
@@ -92,42 +93,42 @@
     }
 
     public function provideTestDefaultValues() {
-        return array(
-            array(
+        return [
+            [
                 null,
                 new Expr\ConstFetch(new Name('null'))
-            ),
-            array(
+            ],
+            [
                 true,
                 new Expr\ConstFetch(new Name('true'))
-            ),
-            array(
+            ],
+            [
                 false,
                 new Expr\ConstFetch(new Name('false'))
-            ),
-            array(
+            ],
+            [
                 31415,
                 new Scalar\LNumber(31415)
-            ),
-            array(
+            ],
+            [
                 3.1415,
                 new Scalar\DNumber(3.1415)
-            ),
-            array(
+            ],
+            [
                 'Hallo World',
                 new Scalar\String_('Hallo World')
-            ),
-            array(
-                array(1, 2, 3),
-                new Expr\Array_(array(
+            ],
+            [
+                [1, 2, 3],
+                new Expr\Array_([
                     new Expr\ArrayItem(new Scalar\LNumber(1)),
                     new Expr\ArrayItem(new Scalar\LNumber(2)),
                     new Expr\ArrayItem(new Scalar\LNumber(3)),
-                ))
-            ),
-            array(
-                array('foo' => 'bar', 'bar' => 'foo'),
-                new Expr\Array_(array(
+                ])
+            ],
+            [
+                ['foo' => 'bar', 'bar' => 'foo'],
+                new Expr\Array_([
                     new Expr\ArrayItem(
                         new Scalar\String_('bar'),
                         new Scalar\String_('foo')
@@ -136,12 +137,12 @@
                         new Scalar\String_('foo'),
                         new Scalar\String_('bar')
                     ),
-                ))
-            ),
-            array(
+                ])
+            ],
+            [
                 new Scalar\MagicConst\Dir,
                 new Scalar\MagicConst\Dir
-            )
-        );
+            ]
+        ];
     }
 }