X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FNode%2FStmt%2FClassConstTest.php;fp=vendor%2Fnikic%2Fphp-parser%2Ftest%2FPhpParser%2FNode%2FStmt%2FClassConstTest.php;h=a5b6ce4608b10794340ba599950aa82bb168a7fc;hp=610972c6b55e8bc2adf0b774e70833fd724be38a;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php b/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php index 610972c6b..a5b6ce460 100644 --- a/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php +++ b/vendor/nikic/php-parser/test/PhpParser/Node/Stmt/ClassConstTest.php @@ -1,15 +1,17 @@ -assertTrue($node->isPublic()); $this->assertFalse($node->isProtected()); $this->assertFalse($node->isPrivate()); - $this->assertFalse($node->isStatic()); } public function provideModifiers() { - return array( - array('public'), - array('protected'), - array('private'), - ); + return [ + ['public'], + ['protected'], + ['private'], + ]; } -} \ No newline at end of file +}