mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
29 lines
531 B
PHP
29 lines
531 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\Laravel\NotifyServiceProvider',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param \Illuminate\Foundation\Application $app
|
|
*/
|
|
protected function getEnvironmentSetUp($app)
|
|
{
|
|
$app['config']->set('session.driver', 'array');
|
|
}
|
|
}
|