X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FBuilder%2FPropertyTest.php;fp=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FBuilder%2FPropertyTest.php;h=d7a5a70e26f494d2a45df4a0f088d2bfadb98ec4;hp=de8f4ce63f6261da91bb4c6fe50738172fa85c83;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php b/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php index de8f4ce63..d7a5a70e2 100644 --- a/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php +++ b/vendor/nikic/php-parser/test/PhpParser/Builder/PropertyTest.php @@ -1,4 +1,4 @@ -assertEquals( new Stmt\Property( Stmt\Class_::MODIFIER_PROTECTED, - array( + [ new Stmt\PropertyProperty('test') - ) + ] ), $node ); @@ -55,9 +56,9 @@ class PropertyTest extends \PHPUnit_Framework_TestCase $this->assertEquals( new Stmt\Property( Stmt\Class_::MODIFIER_PUBLIC, - array( + [ new Stmt\PropertyProperty('test') - ) + ] ), $node ); @@ -70,12 +71,12 @@ class PropertyTest extends \PHPUnit_Framework_TestCase $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 @@ class PropertyTest extends \PHPUnit_Framework_TestCase } 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 @@ class PropertyTest extends \PHPUnit_Framework_TestCase new Scalar\String_('foo'), new Scalar\String_('bar') ), - )) - ), - array( + ]) + ], + [ new Scalar\MagicConst\Dir, new Scalar\MagicConst\Dir - ) - ); + ] + ]; } }