1 | <?php |
||
7 | class Callback extends Action |
||
8 | { |
||
9 | protected const LOADING_TEXT = 'calling'; |
||
10 | |||
11 | private $function; |
||
12 | |||
13 | private $arguments; |
||
14 | |||
15 | 12 | public function __construct(Command $artisanCommand, callable $function, array $arguments = []) |
|
22 | |||
23 | 12 | public function title(): string |
|
29 | |||
30 | 12 | public function run(): bool |
|
46 | } |
||
47 |