Skip to content

Commit 784a80a

Browse files
authored
Remove default name properties (#45993)
1 parent 54357e0 commit 784a80a

File tree

6 files changed

+0
-66
lines changed

6 files changed

+0
-66
lines changed

src/Illuminate/Database/Console/MonitorCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,6 @@ class MonitorCommand extends DatabaseInspectionCommand
2020
{--databases= : The database connections to monitor}
2121
{--max= : The maximum number of connections that can be open before an event is dispatched}';
2222

23-
/**
24-
* The name of the console command.
25-
*
26-
* This name is used to identify the command during lazy loading.
27-
*
28-
* @var string|null
29-
*
30-
* @deprecated
31-
*/
32-
protected static $defaultName = 'db:monitor';
33-
3423
/**
3524
* The console command description.
3625
*

src/Illuminate/Database/Console/ShowModelCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,6 @@ class ShowModelCommand extends DatabaseInspectionCommand
2727
*/
2828
protected $name = 'model:show {model}';
2929

30-
/**
31-
* The name of the console command.
32-
*
33-
* This name is used to identify the command during lazy loading.
34-
*
35-
* @var string|null
36-
*
37-
* @deprecated
38-
*/
39-
protected static $defaultName = 'model:show';
40-
4130
/**
4231
* The console command description.
4332
*

src/Illuminate/Foundation/Console/AboutCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,6 @@ class AboutCommand extends Command
1818
protected $signature = 'about {--only= : The section to display}
1919
{--json : Output the information as JSON}';
2020

21-
/**
22-
* The name of the console command.
23-
*
24-
* This name is used to identify the command during lazy loading.
25-
*
26-
* @var string|null
27-
*
28-
* @deprecated
29-
*/
30-
protected static $defaultName = 'about';
31-
3221
/**
3322
* The console command description.
3423
*

src/Illuminate/Foundation/Console/DocsCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@ class DocsCommand extends Command
2626
*/
2727
protected $signature = 'docs {page? : The documentation page to open} {section? : The section of the page to open}';
2828

29-
/**
30-
* The name of the console command.
31-
*
32-
* This name is used to identify the command during lazy loading.
33-
*
34-
* @var string|null
35-
*
36-
* @deprecated
37-
*/
38-
protected static $defaultName = 'docs';
39-
4029
/**
4130
* The console command description.
4231
*

src/Illuminate/Foundation/Console/EnvironmentDecryptCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@ class EnvironmentDecryptCommand extends Command
2626
{--path= : Path to write the decrypted file}
2727
{--filename= : Filename of the decrypted file}';
2828

29-
/**
30-
* The name of the console command.
31-
*
32-
* This name is used to identify the command during lazy loading.
33-
*
34-
* @var string|null
35-
*
36-
* @deprecated
37-
*/
38-
protected static $defaultName = 'env:decrypt';
39-
4029
/**
4130
* The console command description.
4231
*

src/Illuminate/Foundation/Console/EnvironmentEncryptCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,6 @@ class EnvironmentEncryptCommand extends Command
2323
{--env= : The environment to be encrypted}
2424
{--force : Overwrite the existing encrypted environment file}';
2525

26-
/**
27-
* The name of the console command.
28-
*
29-
* This name is used to identify the command during lazy loading.
30-
*
31-
* @var string|null
32-
*
33-
* @deprecated
34-
*/
35-
protected static $defaultName = 'env:encrypt';
36-
3726
/**
3827
* The console command description.
3928
*

0 commit comments

Comments
 (0)