| Total Complexity | 3 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class MakeAuthHandlers extends \Illuminate\Console\GeneratorCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The name and signature of the console command. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $signature = 'make:auth-handlers'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The console command description. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $description = 'Create a skeleton of the authentication handlers'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | protected function getStub() |
||
| 30 | { |
||
| 31 | return __DIR__ . '/stubs/auth-handlers.stub'; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the desired class name from the input. |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | protected function getNameInput() |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Get the console command arguments. |
||
| 46 | * |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | protected function getArguments() |
||
| 52 | } |
||
| 53 | } |