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