Skip to content

Commit

Permalink
remove unnecessary psalm-var that already in param tag
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
  • Loading branch information
samsonasik committed Dec 21, 2022
1 parent c8ea291 commit 77a05b8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Git/Value/BranchName.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
{
/** @psalm-param non-empty-string $name */
private function __construct(
/** @psalm-var non-empty-string */
private readonly string $name,
) {
}
Expand Down
1 change: 0 additions & 1 deletion src/Github/MergeMultipleReleaseNotes.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
{
/** @psalm-param non-empty-list<CreateReleaseText> $releaseTextGenerators */
public function __construct(
/** @psalm-var non-empty-list<CreateReleaseText> */
private readonly array $releaseTextGenerators,
) {
}
Expand Down
2 changes: 0 additions & 2 deletions src/Github/Value/RepositoryName.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
* @psalm-param non-empty-string $name
*/
private function __construct(
/** @psalm-var non-empty-string */
private readonly string $owner,
/** @psalm-var non-empty-string */
private readonly string $name,
) {
}
Expand Down
1 change: 0 additions & 1 deletion src/Gpg/SecretKeyId.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
{
/** @psalm-param non-empty-string $id */
private function __construct(
/** @psalm-var non-empty-string */
private readonly string $id,
) {
}
Expand Down

0 comments on commit 77a05b8

Please sign in to comment.