Skip to content

Commit 9652cec

Browse files
committed
Fix PHP 5.4 compatibility in RoboFile.php
1 parent bf7b985 commit 9652cec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RoboFile.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ public function changed($description)
2727
}
2828

2929
protected $docs = [
30-
'docs/GlobalConfig.md' => \Codeception\Specify\Config::class,
31-
'docs/LocalConfig.md' => \Codeception\Specify\ConfigBuilder::class,
30+
'docs/GlobalConfig.md' => '\Codeception\Specify\Config',
31+
'docs/LocalConfig.md' => '\Codeception\Specify\ConfigBuilder',
3232
];
3333

3434
public function docs()
@@ -48,4 +48,4 @@ public function test()
4848
$res = $this->taskPHPUnit()->run();
4949
if (!$res) exit;
5050
}
51-
}
51+
}

0 commit comments

Comments
 (0)