| Total Complexity | 1 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class ReferenceResponse |
||
| 6 | { |
||
| 7 | public string $id; |
||
| 8 | |||
| 9 | public string $name; |
||
| 10 | |||
| 11 | public string $type; |
||
| 12 | |||
| 13 | public ?string $commit_id = null; |
||
| 14 | |||
| 15 | public ?string $commit_message = null; |
||
| 16 | |||
| 17 | public ?string $commit_author = null; |
||
| 18 | |||
| 19 | public ?string $commit_date = null; |
||
| 20 | |||
| 21 | public object $links; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * ReferenceResponse constructor. |
||
| 25 | */ |
||
| 26 | public function __construct(object $reference) |
||
| 38 |