Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public static function create($githubMilestoneStateTest) |
||
20 | { |
||
21 | if ($githubMilestoneStateTest === 'open') { |
||
22 | return new GithubMilestoneOpenState(); |
||
23 | } elseif ($githubMilestoneStateTest === 'closed') { |
||
24 | return new GithubMilestoneClosedState(); |
||
25 | } |
||
26 | |||
27 | throw new Exception($githubMilestoneStateTest.' is not recognized issue state'); |
||
28 | } |
||
29 | } |
||
30 |