for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* TaskScheduler
*
* @author Raffael Sahli <[email protected]>
* @copyright Copryright (c) 2017 gyselroth GmbH (https://gyselroth.com)
* @license MIT https://opensource.org/licenses/MIT
*/
namespace TaskScheduler;
abstract class AbstractJob implements JobInterface
{
* Data.
* @var mixed
**/
protected $data;
* Get data.
* @param mixed $data
* @return JobInterface
public function setData($data): JobInterface
$this->data = $data;
return $this;
}
* @return mixed
public function getData()
return $this->data;