We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 7 | class MakeProviderCommand extends ProviderMakeCommand |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * The console command description. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $description = 'Create a new custom service provider class'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The type of class being generated. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $type = 'Provider'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Get the stub file for the generator. |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | protected function getStub() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the default namespace for the class. |
||
| 36 | * |
||
| 37 | * @param string $rootNamespace |
||
| 38 | * @return string |
||
| 39 | */ |
||
| 40 | protected function getDefaultNamespace($rootNamespace) |
||
| 44 | } |
||
| 45 |