1 | <?php |
||
10 | abstract class Service |
||
11 | { |
||
12 | protected static $workingDirectory; |
||
13 | protected static $parameters; |
||
14 | |||
15 | 48 | public static function getParameter($key) |
|
19 | |||
20 | 309 | public static function setParameter($key, $value) |
|
24 | |||
25 | 157 | public static function getWorkingDirectory() |
|
32 | |||
33 | 309 | public static function setWorkingDirectory($directory) |
|
37 | } |
||
38 |
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.