1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
AddJobsCommand.php
См. документацию.
1<?php
2
3declare(strict_types=1);
4
6
12
14{
15 #[Validatable]
16 public readonly JobCollection $jobs;
17
19 {
20 $this->jobs = $jobs;
21
22 parent::__construct();
23 }
24
25 protected function execute(): Result
26 {
27 $handler = new AddJobsHandler();
28
29 return $handler($this);
30 }
31}