Browse Source

Merge branch 'master' into develop

Taylor Otwell 9 years ago
parent
commit
5b08ff0b34
4 changed files with 6 additions and 4 deletions
  1. 1 1
      app/Providers/AuthServiceProvider.php
  2. 3 0
      config/broadcasting.php
  3. 1 1
      config/database.php
  4. 1 2
      phpunit.xml

+ 1 - 1
app/Providers/AuthServiceProvider.php

@@ -24,7 +24,7 @@ class AuthServiceProvider extends ServiceProvider
      */
     public function boot(GateContract $gate)
     {
-        parent::registerPolicies($gate);
+        $this->registerPolicies($gate);
 
         //
     }

+ 3 - 0
config/broadcasting.php

@@ -33,6 +33,9 @@ return [
             'key' => env('PUSHER_KEY'),
             'secret' => env('PUSHER_SECRET'),
             'app_id' => env('PUSHER_APP_ID'),
+            'options' => [
+                //
+            ],
         ],
 
         'redis' => [

+ 1 - 1
config/database.php

@@ -48,7 +48,7 @@ return [
 
         'sqlite' => [
             'driver'   => 'sqlite',
-            'database' => storage_path('database.sqlite'),
+            'database' => database_path('database.sqlite'),
             'prefix'   => '',
         ],
 

+ 1 - 2
phpunit.xml

@@ -7,8 +7,7 @@
          convertNoticesToExceptions="true"
          convertWarningsToExceptions="true"
          processIsolation="false"
-         stopOnFailure="false"
-         syntaxCheck="false">
+         stopOnFailure="false">
     <testsuites>
         <testsuite name="Application Test Suite">
             <directory>./tests/</directory>