Extra report and cleanup.

This commit is contained in:
James Cole
2015-02-23 21:19:16 +01:00
parent 220d689f69
commit 3e28c0c00a
18 changed files with 415 additions and 191 deletions

View File

@@ -10,7 +10,8 @@ use Illuminate\Support\ServiceProvider;
*
* @package FireflyIII\Providers
*/
class TestingServiceProvider extends ServiceProvider {
class TestingServiceProvider extends ServiceProvider
{
/**
* Register the service provider.
@@ -19,8 +20,7 @@ class TestingServiceProvider extends ServiceProvider {
*/
public function register()
{
if ($this->app->environment() == 'testing')
{
if ($this->app->environment() == 'testing') {
$this->app['config']['session.driver'] = 'native';
}
}