1 | <?php |
||
10 | abstract class Service |
||
11 | { |
||
12 | protected static $workingDirectory; |
||
13 | protected static $runTimeStatus; |
||
14 | protected static $parameters; |
||
15 | |||
16 | 93 | public static function hasRunTimeFlag($status) |
|
20 | |||
21 | 311 | public static function setRuntimeFlag($status) |
|
25 | |||
26 | 311 | public static function resetRuntimeFlags() |
|
30 | |||
31 | 167 | public static function getWorkingDirectory() |
|
40 | |||
41 | 311 | public static function setWorkingDirectory($directory) |
|
45 | } |
||
46 |
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.