aspect_mock.php 340 B

12345678910111213141516
  1. <?php
  2. $kernel = AspectMock\Kernel::getInstance();
  3. $kernel->init([
  4. 'debug' => true,
  5. 'excludePaths' => [
  6. __DIR__.'/../tests',
  7. __DIR__.'/../mails',
  8. __DIR__.'/../runtime',
  9. __DIR__.'/../config',
  10. __DIR__.'/../controllers',
  11. __DIR__.'/../assets',
  12. ],
  13. ]);
  14. $kernel->loadFile(__DIR__ . '/../../vendor/yiisoft/yii2/yii/Yii.php');