| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 44 | 1 | public function __construct(string $repository, string $name, array $config, array $events, bool $active) |
|
| 45 | { |
||
| 46 | 1 | $this->repository = $repository; |
|
| 47 | 1 | $this->name = $name; |
|
| 48 | 1 | $this->config = $config; |
|
| 49 | 1 | $this->events = $events; |
|
| 50 | 1 | $this->active = $active; |
|
| 51 | 1 | } |
|
| 52 | |||
| 93 |