| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 2 | public function __construct(array $data) |
|
| 18 | { |
||
| 19 | 2 | $this->name = $data['name'] ?? null; |
|
| 20 | 2 | $this->paramName = $data['paramName'] ?? null; |
|
| 21 | 2 | $this->paramValue = $data['paramValue'] ?? null; |
|
| 22 | 2 | $this->category = $data['category'] ?? null; |
|
| 23 | 2 | $this->authorized = $data['authorized'] ?? null; |
|
| 24 | } |
||
| 26 |