| 1 | <?php | ||
| 12 | class Merging extends AbstractRepositories | ||
| 13 | { | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Perform a merge | ||
| 17 | * | ||
| 18 | * @link https://developer.github.com/v3/repos/merging/#perform-a-merge | ||
| 19 | * | ||
| 20 | * @param string $base | ||
| 21 | * @param string $head | ||
| 22 | * @param string|null $commitMessage | ||
| 23 | * | ||
| 24 | * @return array | ||
| 25 | */ | ||
| 26 | public function performMerge(string $base, string $head, string $commitMessage = null): array | ||
| 35 | } |