Skip to content

Commit

Permalink
Fix: Remove vendor-specific annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Jan 7, 2024
1 parent f5217b2 commit 97e43d7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 28 deletions.
4 changes: 0 additions & 4 deletions src/ChainNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
final class ChainNormalizer implements Normalizer
{
/**
* @phpstan-var list<Normalizer>
*
* @psalm-var list<Normalizer>
*
* @var array<int, Normalizer>
*/
private readonly array $normalizers;
Expand Down
8 changes: 0 additions & 8 deletions src/Exception/InvalidIndentStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ final class InvalidIndentStyle extends \InvalidArgumentException implements Exce
private string $style = '';

/**
* @phpstan-var list<string>
*
* @psalm-var list<string>
*
* @var list<string>
*/
private array $allowedStyles = [];
Expand Down Expand Up @@ -51,10 +47,6 @@ public function style(): string
}

/**
* @phpstan-return list<string>
*
* @psalm-return list<string>
*
* @return array<int, string>
*/
public function allowedStyles(): array
Expand Down
8 changes: 0 additions & 8 deletions src/Exception/NormalizedInvalidAccordingToSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ final class NormalizedInvalidAccordingToSchema extends \RuntimeException impleme
private string $schemaUri = '';

/**
* @phpstan-var list<string>
*
* @psalm-var list<string>
*
* @var array<int, string>
*/
private array $errors = [];
Expand All @@ -47,10 +43,6 @@ public function schemaUri(): string
}

/**
* @phpstan-return list<string>
*
* @psalm-return list<string>
*
* @return array<int, string>
*/
public function errors(): array
Expand Down
8 changes: 0 additions & 8 deletions src/Exception/OriginalInvalidAccordingToSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ final class OriginalInvalidAccordingToSchema extends \RuntimeException implement
private string $schemaUri = '';

/**
* @phpstan-var list<string>
*
* @psalm-var list<string>
*
* @var array<int, string>
*/
private array $errors = [];
Expand All @@ -47,10 +43,6 @@ public function schemaUri(): string
}

/**
* @phpstan-return list<string>
*
* @psalm-return list<string>
*
* @return array<int, string>
*/
public function errors(): array
Expand Down

0 comments on commit 97e43d7

Please sign in to comment.