| 1 | <?php |
||
| 15 | class JobRunner implements JobRunnerInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | /** @var ActionInspectorInterface */ |
||
| 19 | protected $actionLog; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * JobRunner constructor. |
||
| 23 | * @param ActionInspectorInterface|null $actionLog |
||
| 24 | */ |
||
| 25 | 4 | public function __construct(ActionInspectorInterface $actionLog = null) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritdoc |
||
| 32 | */ |
||
| 33 | 2 | public function run(SchedulerInterface $scheduler, DateTimeInterface $from, DateTimeInterface $to = null, $inc = true) |
|
| 53 | } |