| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 68 | public function __construct(array $attributes) |
||
| 69 | { |
||
| 70 | $this->id = $attributes['id'] ?? null; |
||
| 71 | $this->project = $attributes['project'] ?? null; |
||
| 72 | $this->team = $attributes['team'] ?? null; |
||
| 73 | $this->title = $attributes['title']; |
||
| 74 | $this->description = $attributes['description'] ?? ''; |
||
| 75 | $this->workItemType = $attributes['workItemType']; |
||
| 76 | $this->stepsToReproduce = $attributes['stepsToReproduce'] ?? ''; |
||
| 77 | $this->url = $attributes['url'] ?? ''; |
||
| 78 | } |
||
| 90 |