Browse Source

Merge branch 'master' into develop

Taylor Otwell 8 years ago
parent
commit
edc5cee942
3 changed files with 5 additions and 2 deletions
  1. 2 1
      .env.example
  2. 2 0
      config/app.php
  3. 1 1
      tests/TestCase.php

+ 2 - 1
.env.example

@@ -1,6 +1,7 @@
 APP_ENV=local
-APP_DEBUG=true
 APP_KEY=SomeRandomString
+APP_DEBUG=true
+APP_LOG_LEVEL=debug
 APP_URL=http://localhost
 
 DB_CONNECTION=mysql

+ 2 - 0
config/app.php

@@ -110,6 +110,8 @@ return [
 
     'log' => env('APP_LOG', 'single'),
 
+    'log_level' => env('APP_LOG_LEVEL', 'debug'),
+
     /*
     |--------------------------------------------------------------------------
     | Autoloaded Service Providers

+ 1 - 1
tests/TestCase.php

@@ -1,6 +1,6 @@
 <?php
 
-class TestCase extends Illuminate\Foundation\Testing\TestCase
+abstract class TestCase extends Illuminate\Foundation\Testing\TestCase
 {
     /**
      * The base URL to use while testing the application.