| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function __construct( |
||
| 20 | int $maxFileSize = 10, |
||
| 21 | int $maxFiles = 5, |
||
| 22 | ?int $fileMode = null, |
||
| 23 | ?bool $rotateByCopy = null |
||
| 24 | ) { |
||
| 25 | $this->maxFileSize = $maxFileSize; |
||
| 26 | $this->maxFiles = $maxFiles; |
||
| 27 | $this->fileMode = $fileMode; |
||
| 28 | $this->rotateByCopy = $rotateByCopy; |
||
| 29 | } |
||
| 39 |