Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
29 | class PhpTempStream extends Stream |
||
30 | { |
||
31 | |||
32 | /** |
||
33 | * Constructor of the class |
||
34 | * |
||
35 | * @param string $mode |
||
36 | * @param int $maxmemory |
||
37 | * |
||
38 | * @throws InvalidArgumentException |
||
39 | */ |
||
40 | 39 | public function __construct(string $mode = 'r+b', int $maxmemory = 2097152) |
|
49 |