1 | <?php |
||
9 | class GithubPullRequestId implements Identifier |
||
10 | { |
||
11 | private $githubPullRequestId; |
||
12 | |||
13 | /** |
||
14 | * PullRequestId constructor. |
||
15 | * |
||
16 | * @param $githubPullRequestId |
||
17 | */ |
||
18 | public function __construct($githubPullRequestId) |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function __toString() |
||
30 | } |
||
31 |