Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace GeneaLabs\LaravelCaffeine\Tests; |
||
5 | trait CreatesApplication |
||
6 | { |
||
7 | protected function refreshApplication() |
||
8 | { |
||
9 | putenv('APP_ENV=internaltesting'); |
||
10 | |||
11 | $this->app = $this->createApplication(); |
||
12 | } |
||
13 | |||
14 | /** |
||
15 | * @SuppressWarnings(PHPMD.UnusedFormalParameter) |
||
16 | */ |
||
17 | protected function getPackageProviders($app) |
||
20 | } |
||
21 | } |
||
22 |