Passed
Push — master ( c81bf2...c3afe7 )
by Aleksei
09:08 queued 01:17
created
src/Stempler/tests/Transform/BaseTestCase.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 {
28 28
     protected function compile(string $source, array $visitors = [], ?LoaderInterface $loader = null)
29 29
     {
30
-        if ($loader === null) {
30
+        if ($loader === null){
31 31
             $loader = new StringLoader();
32 32
             $loader->set('root', $source);
33 33
         }
@@ -62,11 +62,11 @@  discard block
 block discarded – undo
62 62
         $builder->getCompiler()->addRenderer(new DynamicRenderer(new DirectiveGroup()));
63 63
         $builder->getCompiler()->addRenderer(new HTMLRenderer());
64 64
 
65
-        foreach ($this->getVisitors() as $visitor) {
65
+        foreach ($this->getVisitors() as $visitor){
66 66
             $builder->addVisitor($visitor);
67 67
         }
68 68
 
69
-        foreach ($visitors as $visitor) {
69
+        foreach ($visitors as $visitor){
70 70
             $builder->addVisitor($visitor);
71 71
         }
72 72
 
@@ -80,6 +80,6 @@  discard block
 block discarded – undo
80 80
 
81 81
     protected function getFixtureLoader(): LoaderInterface
82 82
     {
83
-        return new DirectoryLoader(__DIR__ . '/../fixtures');
83
+        return new DirectoryLoader(__DIR__.'/../fixtures');
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -27,7 +27,8 @@  discard block
 block discarded – undo
27 27
 {
28 28
     protected function compile(string $source, array $visitors = [], ?LoaderInterface $loader = null)
29 29
     {
30
-        if ($loader === null) {
30
+        if ($loader === null)
31
+        {
31 32
             $loader = new StringLoader();
32 33
             $loader->set('root', $source);
33 34
         }
@@ -62,11 +63,13 @@  discard block
 block discarded – undo
62 63
         $builder->getCompiler()->addRenderer(new DynamicRenderer(new DirectiveGroup()));
63 64
         $builder->getCompiler()->addRenderer(new HTMLRenderer());
64 65
 
65
-        foreach ($this->getVisitors() as $visitor) {
66
+        foreach ($this->getVisitors() as $visitor)
67
+        {
66 68
             $builder->addVisitor($visitor);
67 69
         }
68 70
 
69
-        foreach ($visitors as $visitor) {
71
+        foreach ($visitors as $visitor)
72
+        {
70 73
             $builder->addVisitor($visitor);
71 74
         }
72 75
 
Please login to merge, or discard this patch.
src/Stempler/src/Compiler/Result.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,22 +24,22 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function withinContext(?Context $ctx, callable $body): void
26 26
     {
27
-        if ($ctx === null || $ctx->getPath() === null) {
27
+        if ($ctx === null || $ctx->getPath() === null){
28 28
             $body($this);
29 29
             return;
30 30
         }
31 31
 
32
-        try {
32
+        try{
33 33
             $this->parent = Location::fromContext($ctx, $this->parent);
34 34
             $body($this);
35
-        } finally {
35
+        }finally{
36 36
             $this->parent = $this->parent->parent;
37 37
         }
38 38
     }
39 39
 
40 40
     public function push(string $content, ?Context $ctx = null): void
41 41
     {
42
-        if ($ctx !== null && $ctx->getPath() !== null) {
42
+        if ($ctx !== null && $ctx->getPath() !== null){
43 43
             $this->locations[\strlen($this->content)] = Location::fromContext($ctx, $this->parent);
44 44
         }
45 45
 
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
         $paths = [];
60 60
 
61 61
         // We can scan top level only
62
-        foreach ($this->locations as $loc) {
63
-            if (!\in_array($loc->path, $paths, true)) {
62
+        foreach ($this->locations as $loc){
63
+            if (!\in_array($loc->path, $paths, true)){
64 64
                 $paths[] = $loc->path;
65 65
             }
66 66
         }
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $locations = [];
77 77
 
78
-        foreach ($this->locations as $offset => $location) {
78
+        foreach ($this->locations as $offset => $location){
79 79
             $locations[$offset] = $location;
80 80
         }
81 81
 
Please login to merge, or discard this patch.
Braces   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -24,22 +24,27 @@  discard block
 block discarded – undo
24 24
 
25 25
     public function withinContext(?Context $ctx, callable $body): void
26 26
     {
27
-        if ($ctx === null || $ctx->getPath() === null) {
27
+        if ($ctx === null || $ctx->getPath() === null)
28
+        {
28 29
             $body($this);
29 30
             return;
30 31
         }
31 32
 
32
-        try {
33
+        try
34
+        {
33 35
             $this->parent = Location::fromContext($ctx, $this->parent);
34 36
             $body($this);
35
-        } finally {
37
+        }
38
+        finally
39
+        {
36 40
             $this->parent = $this->parent->parent;
37 41
         }
38 42
     }
39 43
 
40 44
     public function push(string $content, ?Context $ctx = null): void
41 45
     {
42
-        if ($ctx !== null && $ctx->getPath() !== null) {
46
+        if ($ctx !== null && $ctx->getPath() !== null)
47
+        {
43 48
             $this->locations[\strlen($this->content)] = Location::fromContext($ctx, $this->parent);
44 49
         }
45 50
 
@@ -59,8 +64,10 @@  discard block
 block discarded – undo
59 64
         $paths = [];
60 65
 
61 66
         // We can scan top level only
62
-        foreach ($this->locations as $loc) {
63
-            if (!\in_array($loc->path, $paths, true)) {
67
+        foreach ($this->locations as $loc)
68
+        {
69
+            if (!\in_array($loc->path, $paths, true))
70
+            {
64 71
                 $paths[] = $loc->path;
65 72
             }
66 73
         }
@@ -75,7 +82,8 @@  discard block
 block discarded – undo
75 82
     {
76 83
         $locations = [];
77 84
 
78
-        foreach ($this->locations as $offset => $location) {
85
+        foreach ($this->locations as $offset => $location)
86
+        {
79 87
             $locations[$offset] = $location;
80 88
         }
81 89
 
Please login to merge, or discard this patch.
tests/ClassNode/ConflictResolver/Fixtures/WithComplexConstructor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         ?int $int = 123,
21 21
         ?\StdClass $nullableClass2 = null,
22 22
         string ...$variadicVar
23
-    ) {
23
+    ){
24 24
         $var2 = new ATest3();
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
src/Telemetry/src/SpanInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param non-empty-string|int $code
29 29
      * @param non-empty-string|null $description
30 30
      */
31
-    public function setStatus(string|int $code, ?string $description = null): self;
31
+    public function setStatus(string | int $code, ?string $description = null): self;
32 32
 
33 33
     /**
34 34
      * Get the current span status.
Please login to merge, or discard this patch.
src/Storage/src/Storage/ReadableTrait.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -18,21 +18,21 @@  discard block
 block discarded – undo
18 18
      */
19 19
     abstract public function bucket(?string $name = null): BucketInterface;
20 20
 
21
-    public function getContents(string|\Stringable $id): string
21
+    public function getContents(string | \Stringable $id): string
22 22
     {
23 23
         [$name, $pathname] = $this->parseUri($id);
24 24
 
25 25
         return $this->bucket($name)->getContents($pathname);
26 26
     }
27 27
 
28
-    public function getStream(string|\Stringable $id)
28
+    public function getStream(string | \Stringable $id)
29 29
     {
30 30
         [$name, $pathname] = $this->parseUri($id);
31 31
 
32 32
         return $this->bucket($name)->getStream($pathname);
33 33
     }
34 34
 
35
-    public function exists(string|\Stringable $id): bool
35
+    public function exists(string | \Stringable $id): bool
36 36
     {
37 37
         [$name, $pathname] = $this->parseUri($id);
38 38
 
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     /**
43 43
      * @return int<0, max>
44 44
      */
45
-    public function getLastModified(string|\Stringable $id): int
45
+    public function getLastModified(string | \Stringable $id): int
46 46
     {
47 47
         [$name, $pathname] = $this->parseUri($id);
48 48
 
@@ -52,14 +52,14 @@  discard block
 block discarded – undo
52 52
     /**
53 53
      * @return int<0, max>
54 54
      */
55
-    public function getSize(string|\Stringable $id): int
55
+    public function getSize(string | \Stringable $id): int
56 56
     {
57 57
         [$name, $pathname] = $this->parseUri($id);
58 58
 
59 59
         return $this->bucket($name)->getSize($pathname);
60 60
     }
61 61
 
62
-    public function getMimeType(string|\Stringable $id): string
62
+    public function getMimeType(string | \Stringable $id): string
63 63
     {
64 64
         [$name, $pathname] = $this->parseUri($id);
65 65
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @return Visibility::VISIBILITY_*
71 71
      */
72 72
     #[ExpectedValues(valuesFromClass: Visibility::class)]
73
-    public function getVisibility(string|\Stringable $id): string
73
+    public function getVisibility(string | \Stringable $id): string
74 74
     {
75 75
         [$name, $pathname] = $this->parseUri($id);
76 76
 
@@ -80,5 +80,5 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * {@see Storage::parseUri()}
82 82
      */
83
-    abstract protected function parseUri(string|\Stringable $uri, bool $withScheme = true): array;
83
+    abstract protected function parseUri(string | \Stringable $uri, bool $withScheme = true): array;
84 84
 }
Please login to merge, or discard this patch.
src/Core/tests/Scope/FinalizeAttributeTest.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $root = self::makeContainer();
23 23
 
24
-        $obj = $root->runScoped(static function (Container $c1) {
25
-            $obj = $c1->runScoped(static function (Container $c2) {
24
+        $obj = $root->runScoped(static function (Container $c1){
25
+            $obj = $c1->runScoped(static function (Container $c2){
26 26
                 $obj = $c2->get(AttrScopeFooFinalize::class);
27 27
 
28 28
                 self::assertFalse($obj->finalized);
@@ -124,12 +124,12 @@  discard block
 block discarded – undo
124 124
         self::expectException(FinalizersException::class);
125 125
         self::expectExceptionMessage('An exception has been thrown during finalization of the scope `foo`');
126 126
 
127
-        try {
127
+        try{
128 128
             $root->runScoped(static function (Container $c1): void {
129 129
                 $obj = $c1->get(AttrScopeFooFinalize::class);
130 130
                 $obj->throwException = true;
131 131
             }, name: 'foo');
132
-        } catch (FinalizersException $e) {
132
+        }catch (FinalizersException $e){
133 133
             self::assertSame('foo', $e->getScope());
134 134
             self::assertCount(1, $e->getExceptions());
135 135
             // Contains the message from the inner exception.
@@ -153,13 +153,13 @@  discard block
 block discarded – undo
153 153
         self::expectException(FinalizersException::class);
154 154
         self::expectExceptionMessage('3 exceptions have been thrown during finalization of the scope `foo`');
155 155
 
156
-        try {
156
+        try{
157 157
             $root->runScoped(static function (Container $c1): void {
158 158
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
159 159
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
160 160
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
161 161
             }, name: 'foo');
162
-        } catch (FinalizersException $e) {
162
+        }catch (FinalizersException $e){
163 163
             self::assertSame('foo', $e->getScope());
164 164
             self::assertCount(3, $e->getExceptions());
165 165
             // Contains the message from the inner exception.
Please login to merge, or discard this patch.
Braces   +22 added lines, -10 removed lines patch added patch discarded remove patch
@@ -21,8 +21,10 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $root = self::makeContainer();
23 23
 
24
-        $obj = $root->runScoped(static function (Container $c1) {
25
-            $obj = $c1->runScoped(static function (Container $c2) {
24
+        $obj = $root->runScoped(static function (Container $c1)
25
+        {
26
+            $obj = $c1->runScoped(static function (Container $c2)
27
+            {
26 28
                 $obj = $c2->get(AttrScopeFooFinalize::class);
27 29
 
28 30
                 self::assertFalse($obj->finalized);
@@ -46,8 +48,10 @@  discard block
 block discarded – undo
46 48
         $root->bindSingleton(LoggerInterface::class, FileLogger::class);
47 49
 
48 50
         $obj2 = null;
49
-        $obj = $root->runScoped(static function (Container $c1) use (&$obj2) {
50
-            $obj = $c1->runScoped(static function (Container $c2) use (&$obj2) {
51
+        $obj = $root->runScoped(static function (Container $c1) use (&$obj2)
52
+        {
53
+            $obj = $c1->runScoped(static function (Container $c2) use (&$obj2)
54
+            {
51 55
                 $obj = $c2->get(AttrScopeFooFinalize::class);
52 56
                 $obj2 = $c2->get(AttrScopeFooFinalize::class);
53 57
 
@@ -77,8 +81,10 @@  discard block
 block discarded – undo
77 81
         $root->bindSingleton(LoggerInterface::class, FileLogger::class);
78 82
 
79 83
         $obj2 = null;
80
-        $obj = $root->runScoped(static function (Container $c1) use (&$obj2) {
81
-            $obj = $c1->runScoped(static function (Container $c2) use (&$obj2) {
84
+        $obj = $root->runScoped(static function (Container $c1) use (&$obj2)
85
+        {
86
+            $obj = $c1->runScoped(static function (Container $c2) use (&$obj2)
87
+            {
82 88
                 $obj = $c2->get(AttrFinalize::class);
83 89
                 $obj2 = $c2->get(AttrFinalize::class);
84 90
 
@@ -124,12 +130,15 @@  discard block
 block discarded – undo
124 130
         self::expectException(FinalizersException::class);
125 131
         self::expectExceptionMessage('An exception has been thrown during finalization of the scope `foo`');
126 132
 
127
-        try {
133
+        try
134
+        {
128 135
             $root->runScoped(static function (Container $c1): void {
129 136
                 $obj = $c1->get(AttrScopeFooFinalize::class);
130 137
                 $obj->throwException = true;
131 138
             }, name: 'foo');
132
-        } catch (FinalizersException $e) {
139
+        }
140
+        catch (FinalizersException $e)
141
+        {
133 142
             self::assertSame('foo', $e->getScope());
134 143
             self::assertCount(1, $e->getExceptions());
135 144
             // Contains the message from the inner exception.
@@ -153,13 +162,16 @@  discard block
 block discarded – undo
153 162
         self::expectException(FinalizersException::class);
154 163
         self::expectExceptionMessage('3 exceptions have been thrown during finalization of the scope `foo`');
155 164
 
156
-        try {
165
+        try
166
+        {
157 167
             $root->runScoped(static function (Container $c1): void {
158 168
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
159 169
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
160 170
                 $c1->get(AttrScopeFooFinalize::class)->throwException = true;
161 171
             }, name: 'foo');
162
-        } catch (FinalizersException $e) {
172
+        }
173
+        catch (FinalizersException $e)
174
+        {
163 175
             self::assertSame('foo', $e->getScope());
164 176
             self::assertCount(3, $e->getExceptions());
165 177
             // Contains the message from the inner exception.
Please login to merge, or discard this patch.
src/Core/tests/Scope/ExceptionsTest.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
         $container = new Container();
22 22
 
23 23
         $container->runScoped(static function (Container $c1): void {
24
-            try {
24
+            try{
25 25
                 $c1->get(ExceptionConstructor::class);
26 26
                 self::fail('Exception should be thrown');
27
-            } catch (\Throwable $e) {
27
+            }catch (\Throwable $e){
28 28
                 self::assertInstanceOf(\Exception::class, $e);
29 29
                 throw $e;
30 30
             }
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
         $container = new Container();
40 40
 
41 41
         $container->runScoped(static function (Container $c1): void {
42
-            try {
42
+            try{
43 43
                 $c1->get(ExceptionConstructor::class);
44 44
                 self::fail('Exception should be thrown');
45
-            } catch (\Throwable $e) {
45
+            }catch (\Throwable $e){
46 46
                 self::assertInstanceOf(\Exception::class, $e);
47 47
                 throw $e;
48 48
             }
@@ -57,10 +57,10 @@  discard block
 block discarded – undo
57 57
         $container = new Container();
58 58
 
59 59
         $container->runScoped(static function (Container $c1): void {
60
-            try {
60
+            try{
61 61
                 $c1->get(DatetimeCarrier::class);
62 62
                 self::fail('Exception should be thrown');
63
-            } catch (\Throwable $e) {
63
+            }catch (\Throwable $e){
64 64
                 self::assertInstanceOf(NotFoundException::class, $e);
65 65
                 self::assertInstanceOf(NotFoundException::class, $e->getPrevious());
66 66
                 self::assertStringContainsString(
Please login to merge, or discard this patch.
Braces   +15 added lines, -6 removed lines patch added patch discarded remove patch
@@ -21,10 +21,13 @@  discard block
 block discarded – undo
21 21
         $container = new Container();
22 22
 
23 23
         $container->runScoped(static function (Container $c1): void {
24
-            try {
24
+            try
25
+            {
25 26
                 $c1->get(ExceptionConstructor::class);
26 27
                 self::fail('Exception should be thrown');
27
-            } catch (\Throwable $e) {
28
+            }
29
+            catch (\Throwable $e)
30
+            {
28 31
                 self::assertInstanceOf(\Exception::class, $e);
29 32
                 throw $e;
30 33
             }
@@ -39,10 +42,13 @@  discard block
 block discarded – undo
39 42
         $container = new Container();
40 43
 
41 44
         $container->runScoped(static function (Container $c1): void {
42
-            try {
45
+            try
46
+            {
43 47
                 $c1->get(ExceptionConstructor::class);
44 48
                 self::fail('Exception should be thrown');
45
-            } catch (\Throwable $e) {
49
+            }
50
+            catch (\Throwable $e)
51
+            {
46 52
                 self::assertInstanceOf(\Exception::class, $e);
47 53
                 throw $e;
48 54
             }
@@ -57,10 +63,13 @@  discard block
 block discarded – undo
57 63
         $container = new Container();
58 64
 
59 65
         $container->runScoped(static function (Container $c1): void {
60
-            try {
66
+            try
67
+            {
61 68
                 $c1->get(DatetimeCarrier::class);
62 69
                 self::fail('Exception should be thrown');
63
-            } catch (\Throwable $e) {
70
+            }
71
+            catch (\Throwable $e)
72
+            {
64 73
                 self::assertInstanceOf(NotFoundException::class, $e);
65 74
                 self::assertInstanceOf(NotFoundException::class, $e->getPrevious());
66 75
                 self::assertStringContainsString(
Please login to merge, or discard this patch.
src/Http/tests/PipelineTest.php 2 patches
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,8 @@  discard block
 block discarded – undo
60 60
 
61 61
     public function testMiddlewareProcessingEventShouldBeDispatched(): void
62 62
     {
63
-        $middleware = new class implements MiddlewareInterface {
63
+        $middleware = new class implements MiddlewareInterface
64
+        {
64 65
             public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
65 66
             {
66 67
                 return (new ResponseFactory(new HttpConfig(['headers' => []])))->createResponse(200);
@@ -89,7 +90,8 @@  discard block
 block discarded – undo
89 90
         $this->container->getBinder('http')
90 91
             ->bind(ServerRequestInterface::class, static fn(CurrentRequest $cr): ?ServerRequestInterface => $cr->get());
91 92
 
92
-        $middleware = new class implements MiddlewareInterface {
93
+        $middleware = new class implements MiddlewareInterface
94
+        {
93 95
             public function process(
94 96
                 ServerRequestInterface $request,
95 97
                 RequestHandlerInterface $handler,
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
         self::assertSame(200, $response->getStatusCode());
35 35
         self::assertSame('OK', $response->getReasonPhrase());
36
-        self::assertSame('response', (string) $response->getBody());
36
+        self::assertSame('response', (string)$response->getBody());
37 37
     }
38 38
 
39 39
     public function testHandle(): void
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         self::assertSame(200, $response->getStatusCode());
48 48
         self::assertSame('OK', $response->getReasonPhrase());
49
-        self::assertSame('response', (string) $response->getBody());
49
+        self::assertSame('response', (string)$response->getBody());
50 50
     }
51 51
 
52 52
     public function testHandleException(): void
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     public function testMiddlewareProcessingEventShouldBeDispatched(): void
61 61
     {
62
-        $middleware = new class implements MiddlewareInterface {
62
+        $middleware = new class implements MiddlewareInterface{
63 63
             public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
64 64
             {
65 65
                 return (new ResponseFactory(new HttpConfig(['headers' => []])))->createResponse(200);
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         $this->container->getBinder('http')
89 89
             ->bind(ServerRequestInterface::class, static fn(CurrentRequest $cr): ?ServerRequestInterface => $cr->get());
90 90
 
91
-        $middleware = new class implements MiddlewareInterface {
91
+        $middleware = new class implements MiddlewareInterface{
92 92
             public function process(
93 93
                 ServerRequestInterface $request,
94 94
                 RequestHandlerInterface $handler,
Please login to merge, or discard this patch.
src/Distribution/src/Bootloader/DistributionBootloader.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
             static function (DistributionConfig $config): DistributionInterface {
49 49
                 $manager = new Manager($config->getDefaultDriver());
50 50
 
51
-                foreach ($config->getResolvers() as $name => $resolver) {
51
+                foreach ($config->getResolvers() as $name => $resolver){
52 52
                     $manager->add($name, $resolver);
53 53
                 }
54 54
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,8 @@
 block discarded – undo
48 48
             static function (DistributionConfig $config): DistributionInterface {
49 49
                 $manager = new Manager($config->getDefaultDriver());
50 50
 
51
-                foreach ($config->getResolvers() as $name => $resolver) {
51
+                foreach ($config->getResolvers() as $name => $resolver)
52
+                {
52 53
                     $manager->add($name, $resolver);
53 54
                 }
54 55
 
Please login to merge, or discard this patch.