Skip to content

Commit b9ce93e

Browse files
committed
unify expressions
1 parent 48b9b80 commit b9ce93e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/Illuminate/Auth/Console/ClearResetsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public function handle()
3838
{
3939
$this->laravel['auth.password']->broker($this->argument('name'))->getRepository()->deleteExpired();
4040

41-
$this->info('Expired reset tokens cleared!');
41+
$this->info('Expired reset tokens cleared successfully.');
4242
}
4343
}

src/Illuminate/Cache/Console/ClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public function handle()
8585
'cache:cleared', [$this->argument('store'), $this->tags()]
8686
);
8787

88-
$this->info('Application cache cleared!');
88+
$this->info('Application cache cleared successfully.');
8989
}
9090

9191
/**

src/Illuminate/Foundation/Console/ClearCompiledCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ public function handle()
4444
@unlink($packagesPath);
4545
}
4646

47-
$this->info('Compiled services and packages files removed!');
47+
$this->info('Compiled services and packages files removed successfully.');
4848
}
4949
}

src/Illuminate/Foundation/Console/ConfigClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ public function handle()
5959
{
6060
$this->files->delete($this->laravel->getCachedConfigPath());
6161

62-
$this->info('Configuration cache cleared!');
62+
$this->info('Configuration cache cleared successfully.');
6363
}
6464
}

src/Illuminate/Foundation/Console/EventClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ public function handle()
6161
{
6262
$this->files->delete($this->laravel->getCachedEventsPath());
6363

64-
$this->info('Cached events cleared!');
64+
$this->info('Cached events cleared successfully.');
6565
}
6666
}

src/Illuminate/Foundation/Console/RouteClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ public function handle()
5959
{
6060
$this->files->delete($this->laravel->getCachedRoutesPath());
6161

62-
$this->info('Route cache cleared!');
62+
$this->info('Route cache cleared successfully.');
6363
}
6464
}

src/Illuminate/Foundation/Console/ViewClearCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ public function handle()
7070
$this->files->delete($view);
7171
}
7272

73-
$this->info('Compiled views cleared!');
73+
$this->info('Compiled views cleared successfully.');
7474
}
7575
}

src/Illuminate/Queue/Console/ListFailedCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class ListFailedCommand extends Command
4545
public function handle()
4646
{
4747
if (count($jobs = $this->getFailedJobs()) === 0) {
48-
return $this->info('No failed jobs!');
48+
return $this->comment('No failed jobs found.');
4949
}
5050

5151
$this->displayFailedJobs($jobs);

0 commit comments

Comments
 (0)