Skip to content

Commit

Permalink
unify expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 13, 2022
1 parent 48b9b80 commit b9ce93e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Auth/Console/ClearResetsCommand.php
Expand Up @@ -38,6 +38,6 @@ public function handle()
{
$this->laravel['auth.password']->broker($this->argument('name'))->getRepository()->deleteExpired();

$this->info('Expired reset tokens cleared!');
$this->info('Expired reset tokens cleared successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Cache/Console/ClearCommand.php
Expand Up @@ -85,7 +85,7 @@ public function handle()
'cache:cleared', [$this->argument('store'), $this->tags()]
);

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

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ClearCompiledCommand.php
Expand Up @@ -44,6 +44,6 @@ public function handle()
@unlink($packagesPath);
}

$this->info('Compiled services and packages files removed!');
$this->info('Compiled services and packages files removed successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ConfigClearCommand.php
Expand Up @@ -59,6 +59,6 @@ public function handle()
{
$this->files->delete($this->laravel->getCachedConfigPath());

$this->info('Configuration cache cleared!');
$this->info('Configuration cache cleared successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/EventClearCommand.php
Expand Up @@ -61,6 +61,6 @@ public function handle()
{
$this->files->delete($this->laravel->getCachedEventsPath());

$this->info('Cached events cleared!');
$this->info('Cached events cleared successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/RouteClearCommand.php
Expand Up @@ -59,6 +59,6 @@ public function handle()
{
$this->files->delete($this->laravel->getCachedRoutesPath());

$this->info('Route cache cleared!');
$this->info('Route cache cleared successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/ViewClearCommand.php
Expand Up @@ -70,6 +70,6 @@ public function handle()
$this->files->delete($view);
}

$this->info('Compiled views cleared!');
$this->info('Compiled views cleared successfully.');
}
}
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Console/ListFailedCommand.php
Expand Up @@ -45,7 +45,7 @@ class ListFailedCommand extends Command
public function handle()
{
if (count($jobs = $this->getFailedJobs()) === 0) {
return $this->info('No failed jobs!');
return $this->comment('No failed jobs found.');
}

$this->displayFailedJobs($jobs);
Expand Down

0 comments on commit b9ce93e

Please sign in to comment.