| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | public function __construct( |
||
| 57 | string $scope, |
||
| 58 | string $key, |
||
| 59 | string $detail = null, |
||
| 60 | string $reference = null, |
||
| 61 | array $arguments = [] |
||
| 62 | ) { |
||
| 63 | $this->scope = $scope; |
||
| 64 | $this->key = $key; |
||
| 65 | $this->detail = $detail; |
||
| 66 | $this->reference = $reference; |
||
| 67 | $this->arguments = $arguments; |
||
| 68 | } |
||
| 69 | |||
| 110 |