Merge pull request #4517 from laurencei/patch-1

Reduce Hash computations during tests
This commit is contained in:
Taylor Otwell 2017-12-19 08:14:04 -06:00 committed by GitHub
commit c5a5069ac4
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;
use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
@ -17,6 +18,8 @@ public function createApplication()
$app->make(Kernel::class)->bootstrap();
Hash::setRounds(5);
return $app;
}
}