Skip to content

Commit e73669e

Browse files
author
Your Name
committed
linting fix
1 parent 3bb14cb commit e73669e

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/VCS/Adapter/Git.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ abstract public function createFile(string $owner, string $repositoryName, strin
5858
*/
5959
abstract public function createBranch(string $owner, string $repositoryName, string $newBranchName, string $oldBranchName): array;
6060

61-
/**
62-
* Create a pull request
63-
*
64-
* @param string $owner Owner of the repository
65-
* @param string $repositoryName Name of the repository
66-
* @param string $title PR title
67-
* @param string $head Source branch
68-
* @param string $base Target branch
69-
* @param string $body PR description (optional)
70-
* @return array<mixed> Created PR details
71-
*/
61+
/**
62+
* Create a pull request
63+
*
64+
* @param string $owner Owner of the repository
65+
* @param string $repositoryName Name of the repository
66+
* @param string $title PR title
67+
* @param string $head Source branch
68+
* @param string $base Target branch
69+
* @param string $body PR description (optional)
70+
* @return array<mixed> Created PR details
71+
*/
7272
abstract public function createPullRequest(string $owner, string $repositoryName, string $title, string $head, string $base, string $body = ''): array;
7373
}

src/VCS/Adapter/Git/GitHub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function createRepository(string $owner, string $repositoryName, bool $pr
9393

9494
return $response['body'] ?? [];
9595
}
96-
/**
96+
/**
9797
* Create a pull request
9898
*
9999
* @param string $owner Owner of the repository

tests/VCS/Adapter/GitHubTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ public function testGetLatestCommit(): void
443443
$this->assertSame('https://avatars.githubusercontent.com/u/43381712?v=4', $commitDetails['commitAuthorAvatar']);
444444
$this->assertSame('https://github.com/vermakhushboo', $commitDetails['commitAuthorUrl']);
445445
}
446-
446+
447447
public function test_create_file(): void
448448
{
449449
$owner = 'test-kh';

0 commit comments

Comments
 (0)