Skip to content

Commit 65f0bac

Browse files
authored
Remove default name properties (#41596)
1 parent 7727687 commit 65f0bac

File tree

74 files changed

+0
-814
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+0
-814
lines changed

src/Illuminate/Auth/Console/ClearResetsCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,6 @@ class ClearResetsCommand extends Command
1515
*/
1616
protected $signature = 'auth:clear-resets {name? : The name of the password broker}';
1717

18-
/**
19-
* The name of the console command.
20-
*
21-
* This name is used to identify the command during lazy loading.
22-
*
23-
* @var string|null
24-
*
25-
* @deprecated
26-
*/
27-
protected static $defaultName = 'auth:clear-resets';
28-
2918
/**
3019
* The console command description.
3120
*

src/Illuminate/Cache/Console/CacheTableCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ class CacheTableCommand extends Command
1717
*/
1818
protected $name = 'cache:table';
1919

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

src/Illuminate/Cache/Console/ClearCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ class ClearCommand extends Command
1919
*/
2020
protected $name = 'cache:clear';
2121

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

src/Illuminate/Cache/Console/ForgetCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@ class ForgetCommand extends Command
1616
*/
1717
protected $signature = 'cache:forget {key : The key to remove} {store? : The store to remove the key from}';
1818

19-
/**
20-
* The name of the console command.
21-
*
22-
* This name is used to identify the command during lazy loading.
23-
*
24-
* @var string|null
25-
*
26-
* @deprecated
27-
*/
28-
protected static $defaultName = 'cache:forget';
29-
3019
/**
3120
* The console command description.
3221
*

src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ class ScheduleFinishCommand extends Command
1717
*/
1818
protected $signature = 'schedule:finish {id} {code=0}';
1919

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

src/Illuminate/Console/Scheduling/ScheduleRunCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,6 @@ class ScheduleRunCommand extends Command
2323
*/
2424
protected $name = 'schedule:run';
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 = 'schedule:run';
36-
3726
/**
3827
* The console command description.
3928
*

src/Illuminate/Console/Scheduling/ScheduleTestCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,6 @@ class ScheduleTestCommand extends Command
1616
*/
1717
protected $signature = 'schedule:test {--name= : The name of the scheduled command to run}';
1818

19-
/**
20-
* The name of the console command.
21-
*
22-
* This name is used to identify the command during lazy loading.
23-
*
24-
* @var string|null
25-
*
26-
* @deprecated
27-
*/
28-
protected static $defaultName = 'schedule:test';
29-
3019
/**
3120
* The console command description.
3221
*

src/Illuminate/Console/Scheduling/ScheduleWorkCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ class ScheduleWorkCommand extends Command
1717
*/
1818
protected $name = 'schedule:work';
1919

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

src/Illuminate/Database/Console/DumpCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,6 @@ class DumpCommand extends Command
2424
{--path= : The path where the schema dump file should be stored}
2525
{--prune : Delete all existing migration files}';
2626

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

src/Illuminate/Database/Console/Factories/FactoryMakeCommand.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ class FactoryMakeCommand extends GeneratorCommand
1717
*/
1818
protected $name = 'make:factory';
1919

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

0 commit comments

Comments
 (0)