| Total Complexity | 7 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class EnvFile implements Interfaces\Marshaller |
||
| 11 | { |
||
| 12 | private \SplFileObject $envFile; |
||
| 13 | |||
| 14 | private function __construct(\SplFileObject $envFile) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function marshallIntoEnvironment(): void |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | public static function create(\SplFileObject $envFile): self |
||
| 36 | } |
||
| 37 | |||
| 38 | public static function createFromPath(string $filePath): self |
||
| 49 |