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

Commit

Permalink
Use strict types
Browse files Browse the repository at this point in the history
  • Loading branch information
fmasa committed Sep 1, 2017
1 parent 95ef6cb commit 391529d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/DoctrineNullableEmbeddables/Annotations/Nullable.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Fmasa\DoctrineNullableEmbeddables\Annotations;

/**
Expand Down
2 changes: 2 additions & 0 deletions src/DoctrineNullableEmbeddables/Subscriber.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Fmasa\DoctrineNullableEmbeddables;

use Doctrine\Common\Annotations\Reader;
Expand Down
2 changes: 2 additions & 0 deletions tests/SubscriberTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Fmasa\DoctrineNullableEmbeddables;

use Doctrine\Common\Annotations\AnnotationReader;
Expand Down
2 changes: 2 additions & 0 deletions tests/stubs/Embeddable.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Doctrine\ORM\Mapping as ORM;


Expand Down
2 changes: 2 additions & 0 deletions tests/stubs/EntityWithNestedEmbeddable.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Doctrine\ORM\Mapping as ORM;
use Fmasa\DoctrineNullableEmbeddables\Annotations\Nullable;

Expand Down
2 changes: 2 additions & 0 deletions tests/stubs/NestedEmbeddable.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Doctrine\ORM\Mapping as ORM;
use Fmasa\DoctrineNullableEmbeddables\Annotations\Nullable;

Expand Down
2 changes: 2 additions & 0 deletions tests/stubs/SimpleEntity.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

use Fmasa\DoctrineNullableEmbeddables\Annotations\Nullable;
use Doctrine\ORM\Mapping as ORM;

Expand Down

0 comments on commit 391529d

Please sign in to comment.