| 1 | <?php |
||
| 10 | class GithubCommitConverter |
||
| 11 | { |
||
| 12 | use GithubCommitConvertTrait; |
||
| 13 | use GithubUserConvertTrait; |
||
| 14 | private $githubRepo; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * GithubMilestoneConverter constructor. |
||
| 18 | * |
||
| 19 | * @param $githubRepo |
||
| 20 | */ |
||
| 21 | public function __construct(GithubRepo $githubRepo) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param $data |
||
| 28 | * |
||
| 29 | * @return \DevBoardLib\GithubCore\Commit\GithubCommitSource |
||
| 30 | */ |
||
| 31 | public function convert($data) |
||
| 35 | } |
||
| 36 |