| 1 | <?php |
||
| 13 | class PhpDotEnv |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | private $dir; |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $filename; |
||
| 23 | |||
| 24 | public function __construct($dir, $filename = '.env') |
||
| 29 | |||
| 30 | public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $next) |
||
| 36 | |||
| 37 | private function loadEnvironment() |
||
| 56 | } |
||
| 57 |