Files
php-flasher/Tests/TestCase.php
T
KHOUBZA Younes 0b3a585687 update namespace
2020-12-03 09:15:47 +01:00

29 lines
537 B
PHP

<?php
namespace Flasher\Laravel\Tests;
use Orchestra\Testbench\TestCase as Orchestra;
class TestCase extends Orchestra
{
/**
* @param $app
*
* @return array
*/
protected function getPackageProviders($app = null)
{
return array(
'Flasher\LaravelFlasher\PrimeServiceProvider',
);
}
/**
* @param \Illuminate\Foundation\Application $app
*/
protected function getEnvironmentSetUp($app)
{
$app['config']->set('session.driver', 'array');
}
}