Skip to content

Commit

Permalink
bugfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ytake committed Dec 23, 2015
1 parent 204be5b commit 312d63c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/LogServiceProvider.php
Expand Up @@ -39,7 +39,8 @@ public function register()

$this->app->bind('fluent.handler', function ($app) {
return new RegisterPushHandler(
$app['Illuminate\Contracts\Logging\Log'], $app['config']->get('fluent')
$app['Illuminate\Contracts\Logging\Log'],
$app['config']->get('fluent')
);
});
}
Expand Down
2 changes: 1 addition & 1 deletion tests/PushHandlerTest.php
Expand Up @@ -23,6 +23,6 @@ protected function setUp()
public function testPushHandler()
{
$this->register->pushHandler();
$this->assertNotCount(0 , $this->logger->getMonolog()->getHandlers());
$this->assertNotCount(0, $this->logger->getMonolog()->getHandlers());
}
}

0 comments on commit 312d63c

Please sign in to comment.