Skip to content

Commit

Permalink
Format Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbowers committed Jan 3, 2017
1 parent 497f67a commit d9b5382
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Scheduling/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use Cron\CronExpression;
use GuzzleHttp\Client as HttpClient;
use Illuminate\Contracts\Mail\Mailer;
use Illuminate\Support\Traits\Macroable;
use Symfony\Component\Process\Process;
use Illuminate\Support\Traits\Macroable;
use Illuminate\Contracts\Container\Container;
use Illuminate\Contracts\Cache\Repository as Cache;

Expand Down
2 changes: 1 addition & 1 deletion tests/Console/Scheduling/FrequencyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function testSaturdays()

public function testFrequencyMacro()
{
Event::macro('everyXMinutes', function($x) {
Event::macro('everyXMinutes', function ($x) {
return $this->spliceIntoPosition(1, "*/{$x}");
});

Expand Down

0 comments on commit d9b5382

Please sign in to comment.