| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 61 | public function __construct(array $attributes) |
||
| 62 | { |
||
| 63 | $this->id = $attributes['id'] ?? ''; |
||
| 64 | $this->url = $attributes['url'] ?? ''; |
||
| 65 | $this->description = $attributes['description'] ?? ''; |
||
| 66 | $this->eventType = $attributes['eventType']; |
||
| 67 | $this->projectId = $attributes['projectId'] ?? ''; |
||
| 68 | $this->username = $attributes['username'] ?? ''; |
||
| 69 | $this->password = $attributes['password'] ?? ''; |
||
| 70 | } |
||
| 72 |