Browse Source

Update CreatesApplication.php

Laurence Ioannou 6 years ago
parent
commit
c1166f3734
1 changed files with 3 additions and 0 deletions
  1. 3 0
      tests/CreatesApplication.php

+ 3 - 0
tests/CreatesApplication.php

@@ -2,6 +2,7 @@
 
 namespace Tests;
 
+use Illuminate\Support\Facades\Hash;
 use Illuminate\Contracts\Console\Kernel;
 
 trait CreatesApplication
@@ -16,6 +17,8 @@ trait CreatesApplication
         $app = require __DIR__.'/../bootstrap/app.php';
 
         $app->make(Kernel::class)->bootstrap();
+        
+        Hash::setRounds(5);
 
         return $app;
     }