| 1 | <?php |
||
| 11 | class GithubCommitConverter |
||
| 12 | { |
||
| 13 | use GithubCommitConvertTrait; |
||
| 14 | use GithubUserConvertTrait; |
||
| 15 | /** |
||
| 16 | * @var GithubRepo |
||
| 17 | */ |
||
| 18 | private $githubRepo; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * GithubMilestoneConverter constructor. |
||
| 22 | * |
||
| 23 | * @param $githubRepo |
||
| 24 | */ |
||
| 25 | public function __construct(GithubRepo $githubRepo) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param $data |
||
| 32 | * |
||
| 33 | * @return \DevBoardLib\GithubCore\Commit\GithubCommitSource |
||
| 34 | */ |
||
| 35 | public function convert($data) |
||
| 39 | } |
||
| 40 |