Procházet zdrojové kódy

Fix test bootstrap in PHP < 5.5

Justin Hileman před 9 roky
rodič
revize
0803fa688b
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. 4 3
      test/bootstrap.php

+ 4 - 3
test/bootstrap.php

@@ -56,7 +56,7 @@ class TestStream
      */
     public function stream_stat()
     {
-        return [];
+        return array();
     }
 
     /**
@@ -86,5 +86,6 @@ class TestStream
     }
 }
 
-stream_wrapper_register('test', TestStream::class)
-    || die('Failed to register protocol');
+if (!stream_wrapper_register('test', 'TestStream')) {
+    die('Failed to register protocol');
+}