/tests/CreatesApplication.php
https://bitbucket.org/mdoviedor/hotelium · PHP · 25 lines · 14 code · 6 blank · 5 comment · 0 complexity · a23c944b0d9ea24dd52055750af817fd MD5 · raw file
- <?php
- namespace Tests;
- use Illuminate\Contracts\Console\Kernel;
- use Illuminate\Support\Facades\Hash;
- trait CreatesApplication
- {
- /**
- * Creates the application.
- *
- * @return \Illuminate\Foundation\Application
- */
- public function createApplication()
- {
- $app = require __DIR__.'/../bootstrap/app.php';
- $app->make(Kernel::class)->bootstrap();
- Hash::driver('bcrypt')->setRounds(4);
- return $app;
- }
- }