You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
987 B
39 lines
987 B
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Application Base Layout View
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Default Laravel view layout
|
|
|
|
|
*/
|
|
|
|
'default_layout_view' => 'layouts.app',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Base Test Class Path
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Base TestCase Path on Laravel application
|
|
|
|
|
*/
|
|
|
|
'base_test_path' => 'tests/TestCase.php',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Base Test Class
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Base Test Class that used on Laravel application
|
|
| according to 'base_test_path' config above
|
|
|
|
|
*/
|
|
|
|
'base_test_class' => 'Tests\TestCase',
|
|
|
|
];
|