Passed
Push — union-types ( b56600...45a674 )
by Luis
13:38
created
src/Code/Variables/WithTypeDeclaration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
     /** @see HasType::isAReference() for more details */
15 15
     public function isAReference(): bool
16 16
     {
17
-        if (! $this->hasTypeDeclaration()) {
17
+        if (!$this->hasTypeDeclaration()) {
18 18
             return false;
19 19
         }
20
-        return ! $this->type->isBuiltIn();
20
+        return !$this->type->isBuiltIn();
21 21
     }
22 22
 
23 23
     /** @see HasType::hasTypeDeclaration() for more details */
Please login to merge, or discard this patch.
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 use Rector\Set\ValueObject\SetList;
14 14
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
15 15
 
16
-return static function (ContainerConfigurator $containerConfigurator): void {
16
+return static function(ContainerConfigurator $containerConfigurator): void {
17 17
     $parameters = $containerConfigurator->parameters();
18 18
 
19 19
     $parameters->set(Option::PATHS, [__DIR__ . '/src', __DIR__ . '/tests']);
Please login to merge, or discard this patch.