Skip to content

Commit

Permalink
Update README.md (#10)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <[email protected]>
  • Loading branch information
ghostwriter committed Jul 27, 2023
2 parents 6f3184c + 3e68f3f commit a6a1bd1
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,17 +137,18 @@ final class ExamplePluginTest extends TestCase
> ```json
> {
> "errors": [
> {
> "file": "code.php",
> "type": "MixedInferredReturnType",
> "message": "Providers must return iterable<array-key, array<array-key, mixed>>, possibly different array<array-key, mixed> provided"
> },
> {
> "file": "car.php",
> "type": "PossiblyUnusedMethod",
> "message": "Cannot find any calls to method NS\\Car::drive"
> }
> ]
> {
> "file": "code.php",
> "message": "Providers must return iterable<array-key, array<array-key, mixed>>, possibly different array<array-key, mixed> provided",
> "severity": "error",
> "type": "MixedInferredReturnType"
> },
> {
> "file": "car.php",
> "message": "Cannot find any calls to method NS\\Car::drive",
> "severity": "error",
> "type": "PossiblyUnusedMethod"
> }
> ]
> }
> ```
Expand Down

0 comments on commit a6a1bd1

Please sign in to comment.