1 | <?php |
||
10 | class GithubRepoId implements Identifier |
||
11 | { |
||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $githubRepoId; |
||
16 | |||
17 | /** |
||
18 | * IssueId constructor. |
||
19 | * |
||
20 | * @param $githubRepoId |
||
21 | */ |
||
22 | public function __construct(int $githubRepoId) |
||
26 | |||
27 | /** |
||
28 | * @return int |
||
29 | */ |
||
30 | public function getId() : int |
||
34 | |||
35 | /** |
||
36 | * @return string |
||
37 | */ |
||
38 | public function __toString() : string |
||
42 | } |
||
43 |