Update CreatesApplication.php

This commit is contained in:
Laurence Ioannou 2017-12-19 11:41:38 +00:00 committed by GitHub
parent 3f0e742421
commit c1166f3734
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
namespace Tests; namespace Tests;
use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Console\Kernel; use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication trait CreatesApplication
@ -17,6 +18,8 @@ public function createApplication()
$app->make(Kernel::class)->bootstrap(); $app->make(Kernel::class)->bootstrap();
Hash::setRounds(5);
return $app; return $app;
} }
} }