for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spike library
* @author Tao <[email protected]>
*/
namespace Spike\Server\Timer;
use Spike\Server\Server;
use Spike\Timer\PeriodicTimer as BasePeriodicTimer;
abstract class PeriodicTimer extends BasePeriodicTimer
{
* @var Server
protected $server;
public function __construct(Server $server)
$this->server = $server;
}
* @return Server
public function getServer()
return $this->server;