| 1 | <?php |
||
| 5 | class Build |
||
| 6 | { |
||
| 7 | use ParentHasClientAwareTrait; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @var Repository |
||
| 11 | */ |
||
| 12 | protected $repository; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | protected $id; |
||
| 18 | |||
| 19 | public function __construct(Repository $repository, \stdClass $build) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return mixed |
||
| 29 | */ |
||
| 30 | public function getId(): int |
||
| 34 | |||
| 35 | public function matrix() |
||
| 39 | } |
||
| 40 |