1 | <?php |
||
10 | class LogSchedule extends Schedule |
||
11 | { |
||
12 | private $rawCommand; |
||
13 | |||
14 | /** |
||
15 | * Add a new Artisan command event to the schedule. |
||
16 | * |
||
17 | * @param string $command |
||
18 | * @param array $parameters |
||
19 | * |
||
20 | * @return \Illuminate\Console\Scheduling\Event |
||
21 | */ |
||
22 | public function command($command, array $parameters = []) |
||
36 | |||
37 | /** |
||
38 | * Add a new command event to the schedule. |
||
39 | * |
||
40 | * @param string $command |
||
41 | * @param array $parameters |
||
42 | * |
||
43 | * @return \Illuminate\Console\Scheduling\Event |
||
44 | */ |
||
45 | public function exec($command, array $parameters = []) |
||
55 | } |
||
56 |