Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / test / PhpParser / Node / Stmt / InterfaceTest.php
index c499058265e4e24ac477dc9530109ed037ad94eb..e3e90e47cd67461f3b8c66efeeed2281c02230d7 100644 (file)
@@ -1,25 +1,26 @@
-<?php
+<?php declare(strict_types=1);
 
 namespace PhpParser\Node\Stmt;
 
 use PhpParser\Node;
+use PHPUnit\Framework\TestCase;
 
-class InterfaceTest extends \PHPUnit_Framework_TestCase
+class InterfaceTest extends TestCase
 {
     public function testGetMethods() {
-        $methods = array(
+        $methods = [
             new ClassMethod('foo'),
             new ClassMethod('bar'),
-        );
-        $interface = new Class_('Foo', array(
-            'stmts' => array(
-                new Node\Stmt\ClassConst(array(new Node\Const_('C1', new Node\Scalar\String_('C1')))),
+        ];
+        $interface = new Class_('Foo', [
+            'stmts' => [
+                new Node\Stmt\ClassConst([new Node\Const_('C1', new Node\Scalar\String_('C1'))]),
                 $methods[0],
-                new Node\Stmt\ClassConst(array(new Node\Const_('C2', new Node\Scalar\String_('C2')))),
+                new Node\Stmt\ClassConst([new Node\Const_('C2', new Node\Scalar\String_('C2'))]),
                 $methods[1],
-                new Node\Stmt\ClassConst(array(new Node\Const_('C3', new Node\Scalar\String_('C3')))),
-            )
-        ));
+                new Node\Stmt\ClassConst([new Node\Const_('C3', new Node\Scalar\String_('C3'))]),
+            ]
+        ]);
 
         $this->assertSame($methods, $interface->getMethods());
     }