1 | <?php |
||
10 | abstract class Provider |
||
11 | { |
||
12 | /** @var string */ |
||
13 | protected static $module; |
||
14 | |||
15 | /** @var string */ |
||
16 | protected static $caller; |
||
17 | |||
18 | /** |
||
19 | * @param string $module |
||
20 | */ |
||
21 | public static function setModule($module) |
||
25 | |||
26 | /** |
||
27 | * @param string $caller |
||
28 | */ |
||
29 | public static function setCaller($caller) |
||
33 | } |
||
34 |