@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types=1); |
|
| 2 | +declare(strict_types = 1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
| 5 | 5 | |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | */ |
| 109 | 109 | public function removeChild(GH7162Child $child): void |
| 110 | 110 | { |
| 111 | - if (!$this->children->contains($child)) { |
|
| 111 | + if ( ! $this->children->contains($child)) { |
|
| 112 | 112 | return; |
| 113 | 113 | } |
| 114 | 114 | |