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.
17 lines
340 B
17 lines
340 B
11 years ago
|
<?php
|
||
|
|
||
|
$kernel = AspectMock\Kernel::getInstance();
|
||
|
$kernel->init([
|
||
|
'debug' => true,
|
||
|
'excludePaths' => [
|
||
|
__DIR__.'/../tests',
|
||
|
__DIR__.'/../mails',
|
||
|
__DIR__.'/../runtime',
|
||
|
__DIR__.'/../config',
|
||
|
__DIR__.'/../controllers',
|
||
|
__DIR__.'/../assets',
|
||
|
],
|
||
|
]);
|
||
|
|
||
|
$kernel->loadFile(__DIR__ . '/../../vendor/yiisoft/yii2/yii/Yii.php');
|