| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 84.62% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 22 | final class FileStream extends Stream |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @throws InvalidArgumentException |
||
| 26 | */ |
||
| 27 | 5 | public function __construct(string $filename, string $mode) |
|
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return resource |
||
| 34 | * |
||
| 35 | * @throws InvalidArgumentException |
||
| 36 | */ |
||
| 37 | 5 | private static function openFile(string $filename, string $mode) |
|
| 56 |