Skip to content

Commit

Permalink
Fix invalid type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
guvra committed Nov 11, 2020
1 parent 972f878 commit 8032524
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Config/Validator/JsonSchemaValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class JsonSchemaValidator implements ValidatorInterface
{
/**
* @var Validator
* @var Validator|null
*/
private $schemaValidator;

Expand Down
2 changes: 1 addition & 1 deletion src/Faker/FakerService.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class FakerService
{
/**
* @var Generator
* @var Generator|null
*/
private $generator;

Expand Down
4 changes: 2 additions & 2 deletions tests/functional/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
abstract class TestCase extends BaseTestCase
{
/**
* @var AppKernel
* @var AppKernel|null
*/
protected static $kernel;

/**
* @var Database
* @var Database|null
*/
protected static $database;

Expand Down

0 comments on commit 8032524

Please sign in to comment.