diff --git a/src/Git/Value/BranchName.php b/src/Git/Value/BranchName.php index 9381fb4f..31f21ad2 100644 --- a/src/Git/Value/BranchName.php +++ b/src/Git/Value/BranchName.php @@ -13,7 +13,6 @@ { /** @psalm-param non-empty-string $name */ private function __construct( - /** @psalm-var non-empty-string */ private readonly string $name, ) { } diff --git a/src/Github/MergeMultipleReleaseNotes.php b/src/Github/MergeMultipleReleaseNotes.php index 32f8cffe..da9ebecf 100644 --- a/src/Github/MergeMultipleReleaseNotes.php +++ b/src/Github/MergeMultipleReleaseNotes.php @@ -17,7 +17,6 @@ { /** @psalm-param non-empty-list $releaseTextGenerators */ public function __construct( - /** @psalm-var non-empty-list */ private readonly array $releaseTextGenerators, ) { } diff --git a/src/Github/Value/RepositoryName.php b/src/Github/Value/RepositoryName.php index 270b629d..1848d50d 100644 --- a/src/Github/Value/RepositoryName.php +++ b/src/Github/Value/RepositoryName.php @@ -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, ) { } diff --git a/src/Gpg/SecretKeyId.php b/src/Gpg/SecretKeyId.php index 238f3f77..d234e2e4 100644 --- a/src/Gpg/SecretKeyId.php +++ b/src/Gpg/SecretKeyId.php @@ -13,7 +13,6 @@ { /** @psalm-param non-empty-string $id */ private function __construct( - /** @psalm-var non-empty-string */ private readonly string $id, ) { }