1 | <?php |
||
18 | class SilverStripeLoader extends ConsoleBase |
||
19 | { |
||
20 | /** |
||
21 | * Return a set of Tasks from SilverStripe |
||
22 | * |
||
23 | 3 | * @return array |
|
24 | */ |
||
25 | 3 | public function getTasks() |
|
46 | 4 | ||
47 | /** |
||
48 | * Get a new command factory instance to generate the console Command |
||
49 | * |
||
50 | * @return Factory |
||
51 | */ |
||
52 | public function getCommandFactory() |
||
56 | |||
57 | /** |
||
58 | * Check whether the given task class is abstract |
||
59 | * |
||
60 | * @param string $className |
||
61 | * @return bool |
||
62 | */ |
||
63 | protected function taskIsAbstract($className) |
||
68 | } |
||
69 |