Skip to content

Commit

Permalink
Fixing composer.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
REBELinBLUE committed Mar 2, 2016
1 parent 757fd12 commit 7d52ffe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 196 deletions.
4 changes: 2 additions & 2 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace REBELinBLUE\Deployer\Console;

use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging;
use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging as ConsoleLogging;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging;
Expand All @@ -17,7 +17,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $customBooters = [
\Illuminate\Foundation\Bootstrap\ConfigureLogging::class => ConfigureLogging::class,
\Illuminate\Foundation\Bootstrap\ConfigureLogging::class => ConsoleLogging::class,
];

/**
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace REBELinBLUE\Deployer\Http;

use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging;
use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging as HttpLogging;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
use REBELinBLUE\Deployer\Bootstrap\ConfigureLogging;

Expand All @@ -16,7 +16,7 @@ class Kernel extends HttpKernel
* @var array
*/
protected $customBooters = [
\Illuminate\Foundation\Bootstrap\ConfigureLogging::class => ConfigureLogging::class,
\Illuminate\Foundation\Bootstrap\ConfigureLogging::class => HttpLogging::class,
];

/**
Expand Down
Loading

0 comments on commit 7d52ffe

Please sign in to comment.