| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | 11 | public function __construct( |
|
| 37 | string $origin, |
||
| 38 | ?string $name = null, |
||
| 39 | ?array $recipients = null, |
||
| 40 | ?callable $extraFilter = null |
||
| 41 | ) { |
||
| 42 | 11 | $this->origin = $origin; |
|
| 43 | 11 | $this->name = $name; |
|
| 44 | 11 | $this->recipients = $recipients; |
|
| 45 | 11 | $this->extraFilter = $extraFilter; |
|
| 46 | } |
||
| 80 |