We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 8 | class MakeModelCommand extends ModelMakeCommand |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The name and signature of the console command. |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | // protected $signature = 'make:model'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * The console command description. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $description = 'Create a new model class with Models namespace'; |
||
| 23 | |||
| 24 | |||
| 25 | protected function getPath($name) |
||
| 31 | /** |
||
| 32 | * Get the root namespace for the class. |
||
| 33 | * |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | protected function rootNamespace() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Create a new command instance. |
||
| 43 | * |
||
| 44 | * @return void |
||
| 45 | * |
||
| 46 | public function __construct() |
||
| 47 | { |
||
| 48 | parent::__construct(); |
||
| 49 | } |
||
| 50 | */ |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Execute the console command. |
||
| 54 | * |
||
| 55 | * @return mixed |
||
| 56 | * |
||
| 57 | public function handle() |
||
| 58 | { |
||
| 59 | // |
||
| 60 | } |
||
| 61 | */ |
||
| 62 | } |
||
| 63 |