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