Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | final class BuildLoadEnvironmentVariables implements BoostrapperContract |
||
25 | { |
||
26 | /** |
||
27 | * @var \LaravelZero\Framework\Providers\Build\Build |
||
28 | */ |
||
29 | private $build; |
||
30 | |||
31 | /** |
||
32 | * BuildLoadEnvironmentVariables constructor. |
||
33 | * |
||
34 | * @param \LaravelZero\Framework\Providers\Build\Build $build |
||
35 | */ |
||
36 | 39 | public function __construct(Build $build) |
|
39 | 39 | } |
|
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | 39 | public function bootstrap(Application $app): void |
|
54 |