| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | public function __construct( |
||
| 20 | RepoFacade $repoFacade, |
||
| 21 | GithubIssueConverter $githubIssueConverter, |
||
| 22 | GithubMilestoneConverter $githubMilestoneConverter |
||
| 23 | ) { |
||
| 24 | $this->repoFacade = $repoFacade; |
||
| 25 | $this->githubIssueConverter = $githubIssueConverter; |
||
| 26 | $this->githubMilestoneConverter = $githubMilestoneConverter; |
||
| 27 | } |
||
| 28 | |||
| 53 |