| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | 17 | public function __construct( |
|
| 38 | Environment $environment, |
||
| 39 | array $assets, |
||
| 40 | string $type |
||
| 41 | ) { |
||
| 42 | 17 | $this->environment = $environment; |
|
| 43 | 17 | $this->assets = $assets; |
|
| 44 | 17 | $this->hashId = $this->generateHashId(); |
|
| 45 | 17 | $this->type = $type; |
|
| 46 | 17 | $this->logger = $environment->getLogger(); |
|
| 47 | } |
||
| 62 |