We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb6ae37 commit bd14dceCopy full SHA for bd14dce
tests/AllTest.php
@@ -45,7 +45,7 @@ private function getClassInstance($class) {
45
* Test methods availability
46
*/
47
public function testMethodsAvailability() {
48
- foreach ([
+ foreach (array(
49
'tar' => array(
50
'openTAR',
51
'appendTar',
@@ -65,7 +65,7 @@ public function testMethodsAvailability() {
65
'addFile',
66
'file'
67
)
68
- ] as $class => $methods) {
+ ) as $class => $methods) {
69
foreach ($methods as $method) {
70
$this->assertTrue(method_exists($class, $method), 'Static method ' . $method . ' doesn\'t exists for class ' . $class);
71
}
0 commit comments