Test Failed
Pull Request — master (#70)
by Damien
07:21
created
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 use Rector\Set\ValueObject\LevelSetList;
9 9
 use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
10 10
 
11
-return static function (ContainerConfigurator $containerConfigurator): void {
11
+return static function(ContainerConfigurator $containerConfigurator): void {
12 12
     // get parameters
13 13
     $parameters = $containerConfigurator->parameters();
14 14
     $parameters->set(Option::PATHS, [__DIR__.'/src', __DIR__.'/tests']);
Please login to merge, or discard this patch.
src/Provider/Doctrine/Persistence/Reader/Reader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,8 +102,8 @@
 block discarded – undo
102 102
             ->setAllowedTypes('page', ['null', 'int'])
103 103
             ->setAllowedTypes('page_size', ['null', 'int'])
104 104
             ->setAllowedTypes('strict', ['null', 'bool'])
105
-            ->setAllowedValues('page', static fn ($value) => null === $value || $value >= 1)
106
-            ->setAllowedValues('page_size', static fn ($value) => null === $value || $value >= 1)
105
+            ->setAllowedValues('page', static fn($value) => null === $value || $value >= 1)
106
+            ->setAllowedValues('page_size', static fn($value) => null === $value || $value >= 1)
107 107
         ;
108 108
     }
109 109
 
Please login to merge, or discard this patch.