Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Fixing some static analysis issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Ursenbach committed May 6, 2018
1 parent 92ac811 commit c92029e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/Generator/Blueprint.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class Blueprint extends Generator
* Take compiled API documentation and generate API Blueprint representations.
*
* @psalm-suppress PossiblyFalseOperand
* @psalm-suppress InvalidScalarArgument
* @psalm-suppress PossiblyUndefinedVariable
* @return array
*/
public function generate(): array
Expand Down
2 changes: 1 addition & 1 deletion tests/Parser/Annotations/ReturnAnnotationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testAnnotation(string $content, bool $visible, $version, array $
* @dataProvider providerAnnotation
* @param string $content
* @param bool $visible
* @param $version
* @param Version|null $version
* @param array $expected
*/
public function testHydrate(string $content, bool $visible, $version, array $expected): void
Expand Down
4 changes: 2 additions & 2 deletions tests/Parser/Annotations/ThrowsAnnotationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ThrowsAnnotationTest extends AnnotationTest
/**
* @dataProvider providerAnnotation
* @param string $content
* @param $version
* @param Version|null $version
* @param bool $visible
* @param array $expected
*/
Expand All @@ -31,7 +31,7 @@ public function testAnnotation(string $content, $version, bool $visible, array $
/**
* @dataProvider providerAnnotation
* @param string $content
* @param $version
* @param Version|null $version
* @param bool $visible
* @param array $expected
*/
Expand Down

0 comments on commit c92029e

Please sign in to comment.