Skip to content

Commit 0ea0bf7

Browse files
fix build
1 parent 6956d0e commit 0ea0bf7

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

tests/shared-enviroment/IntegrationTestSuite.php

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,18 @@ protected function invokeMethod($object, string $methodName, array $methodArgume
2727
return $method->invokeArgs($object, $methodArguments);
2828
}
2929

30-
public static function getRootDirectory() : string
30+
/**
31+
* @return string
32+
*/
33+
public static function getRootDirectory()
3134
{
3235
return dirname(__DIR__);
3336
}
3437

35-
public static function getSharedFixturesDirectory() : string
38+
/**
39+
* @return string
40+
*/
41+
public static function getSharedFixturesDirectory()
3642
{
3743
return static::getRootDirectory() . '/shared-fixtures';
3844
}
@@ -44,7 +50,7 @@ public static function getSharedFixturesDirectory() : string
4450
*
4551
* @return string
4652
*/
47-
public static function getSharedFixtureContent(string $filename) : string
53+
public static function getSharedFixtureContent(string $filename)
4854
{
4955
return file_get_contents(static::getSharedFixturesDirectory() . "/$filename");
5056
}

0 commit comments

Comments
 (0)