Files
UNIT3D-Community-Edition/tests/CreatesApplication.php
2023-08-26 20:34:17 -04:00

26 lines
504 B
PHP

<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Hash;
trait CreatesApplication
{
/**
* Creates the application.
*/
public function createApplication(): Application
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
// Set the bcrypt hashing rounds to just 4 for testing
Hash::setRounds(4);
return $app;
}
}