1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/tests/CreatesApplication.php
2023-12-17 07:50:58 +11:00

28 lines
502 B
PHP

<?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';
// define('STDIN', fopen("php://stdin", "r"));
$app->make(Kernel::class)->bootstrap();
Hash::setRounds(4);
return $app;
}
}