Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 2.0625 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
40 | 39 | public function __construct(string $mode = 'r+b', int $maxmemory = 2097152) |
|
41 | { |
||
42 | 39 | if ($maxmemory < 0) { |
|
43 | throw new InvalidArgumentException('Argument #2 ($maxmemory) must be greater than or equal to 0'); |
||
44 | } |
||
45 | |||
46 | 39 | parent::__construct(fopen(sprintf('php://temp/maxmemory:%d', $maxmemory), $mode)); |
|
47 | } |
||
49 |