1 | <?php |
||
17 | abstract class ServerTimer implements TimerInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var Server |
||
21 | */ |
||
22 | protected $server; |
||
23 | |||
24 | public function __construct(Server $server) |
||
28 | |||
29 | /** |
||
30 | * @return Server |
||
31 | */ |
||
32 | public function getServer() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function isPeriodic() |
||
44 | } |