| 1 | <?php |
||
| 12 | class CronJob |
||
| 13 | { |
||
| 14 | /** @ORM\Id @ORM\Column(type = "integer", options = {"unsigned": true}) @ORM\GeneratedValue(strategy="AUTO") */ |
||
| 15 | private $id; |
||
| 16 | |||
| 17 | /** @ORM\Column(type = "string", length = 200, unique = true) */ |
||
| 18 | private $command; |
||
| 19 | |||
| 20 | /** @ORM\Column(type = "datetime", name = "lastRunAt") */ |
||
| 21 | private $lastRunAt; |
||
| 22 | |||
| 23 | 2 | public function __construct($command) |
|
| 28 | |||
| 29 | public function getCommand() |
||
| 33 | |||
| 34 | 2 | public function getLastRunAt() |
|
| 38 | } |