Skip to content

Commit 77a05b8

Browse files
committed
remove unnecessary psalm-var that already in param tag
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
1 parent c8ea291 commit 77a05b8

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

src/Git/Value/BranchName.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
{
1414
/** @psalm-param non-empty-string $name */
1515
private function __construct(
16-
/** @psalm-var non-empty-string */
1716
private readonly string $name,
1817
) {
1918
}

src/Github/MergeMultipleReleaseNotes.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
{
1818
/** @psalm-param non-empty-list<CreateReleaseText> $releaseTextGenerators */
1919
public function __construct(
20-
/** @psalm-var non-empty-list<CreateReleaseText> */
2120
private readonly array $releaseTextGenerators,
2221
) {
2322
}

src/Github/Value/RepositoryName.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@
2121
* @psalm-param non-empty-string $name
2222
*/
2323
private function __construct(
24-
/** @psalm-var non-empty-string */
2524
private readonly string $owner,
26-
/** @psalm-var non-empty-string */
2725
private readonly string $name,
2826
) {
2927
}

src/Gpg/SecretKeyId.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
{
1414
/** @psalm-param non-empty-string $id */
1515
private function __construct(
16-
/** @psalm-var non-empty-string */
1716
private readonly string $id,
1817
) {
1918
}

0 commit comments

Comments
 (0)