Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Dec 14, 2016
1 parent 72e8072 commit b34a148
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Console/Scheduling/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
use Carbon\Carbon;
use LogicException;
use Cron\CronExpression;
use Illuminate\Console\Application;
use GuzzleHttp\Client as HttpClient;
use Illuminate\Contracts\Mail\Mailer;
use Symfony\Component\Process\Process;
Expand Down Expand Up @@ -239,7 +240,7 @@ public function buildCommand()
$redirect = $this->shouldAppendOutput ? ' >> ' : ' > ';

if ($this->withoutOverlapping) {
$forget = Appliation::formatCommandString('cache:forget');
$forget = Application::formatCommandString('cache:forget');

if (windows_os()) {
$command = '('.$this->command.' & '.$forget.' "'.$this->mutexName().'")'.$redirect.$output.' 2>&1 &';
Expand Down

0 comments on commit b34a148

Please sign in to comment.