| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 37 | public function __construct( |
||
| 38 | string $filename, |
||
| 39 | string $contents, |
||
| 40 | Style $style, |
||
| 41 | ProcessRunner $processRunner, |
||
| 42 | Filesystem $filesystem |
||
| 43 | ) { |
||
| 44 | $this->filename = $filename; |
||
| 45 | $this->contents = $contents; |
||
| 46 | $this->style = $style; |
||
| 47 | $this->processRunner = $processRunner; |
||
| 48 | $this->filesystem = $filesystem; |
||
| 49 | } |
||
| 64 | } |