Completed
Push — dev ( 5eca8b...ab1be0 )
by Андрей
04:20 queued 02:07
created
files/ContextResolver/vendor/service/service/src/Options/ModuleOptions.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
test/phpunit/tests/EntryNameResolverChainFunctionalTest.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         $mockResolver1->expects(static::once())
167 167
             ->method('resolveEntryNameByContext')
168 168
             ->with(static::equalTo($entryName), static::equalTo($context))
169
-            ->will(static::returnCallback(function () use (&$actualSequence) {
169
+            ->will(static::returnCallback(function() use (&$actualSequence) {
170 170
                 $actualSequence[] = 1;
171 171
             }));
172 172
         $mockResolverName1 = spl_object_hash($mockResolver1);
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         $mockResolver2->expects(static::once())
177 177
             ->method('resolveEntryNameByContext')
178 178
             ->with(static::equalTo($entryName), static::equalTo($context))
179
-            ->will(static::returnCallback(function () use (&$actualSequence) {
179
+            ->will(static::returnCallback(function() use (&$actualSequence) {
180 180
                 $actualSequence[] = 2;
181 181
             }));
182 182
         $mockResolverName2 = spl_object_hash($mockResolver2);
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $mockResolver3->expects(static::once())
187 187
             ->method('resolveEntryNameByContext')
188 188
             ->with(static::equalTo($entryName), static::equalTo($context))
189
-            ->will(static::returnCallback(function () use (&$actualSequence) {
189
+            ->will(static::returnCallback(function() use (&$actualSequence) {
190 190
                 $actualSequence[] = 3;
191 191
             }));
192 192
         $mockResolverName3 = spl_object_hash($mockResolver3);
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         $mockResolver4->expects(static::once())
198 198
             ->method('resolveEntryNameByContext')
199 199
             ->with(static::equalTo($entryName), static::equalTo($context))
200
-            ->will(static::returnCallback(function () use (&$actualSequence) {
200
+            ->will(static::returnCallback(function() use (&$actualSequence) {
201 201
                 $actualSequence[] = 4;
202 202
             }));
203 203
         $mockResolverName4 = spl_object_hash($mockResolver4);
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
         $mockResolver2->expects(static::once())
351 351
             ->method('resolveEntryNameByContext')
352 352
             ->with(static::equalTo($entryName), static::equalTo($context))
353
-            ->will(static::returnCallback(function () use (&$actualSequence) {
353
+            ->will(static::returnCallback(function() use (&$actualSequence) {
354 354
                 $actualSequence[] = 2;
355 355
             }));
356 356
         $mockResolverName2 = spl_object_hash($mockResolver2);
@@ -360,7 +360,7 @@  discard block
 block discarded – undo
360 360
         $mockResolver3->expects(static::once())
361 361
             ->method('resolveEntryNameByContext')
362 362
             ->with(static::equalTo($entryName), static::equalTo($context))
363
-            ->will(static::returnCallback(function () use (&$actualSequence) {
363
+            ->will(static::returnCallback(function() use (&$actualSequence) {
364 364
                 $actualSequence[] = 3;
365 365
             }));
366 366
         $mockResolverName3 = spl_object_hash($mockResolver3);
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
         $mockResolver4->expects(static::once())
372 372
             ->method('resolveEntryNameByContext')
373 373
             ->with(static::equalTo($entryName), static::equalTo($context))
374
-            ->will(static::returnCallback(function () use (&$actualSequence) {
374
+            ->will(static::returnCallback(function() use (&$actualSequence) {
375 375
                 $actualSequence[] = 4;
376 376
             }));
377 377
         $mockResolverName4 = spl_object_hash($mockResolver4);
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
         $mockResolver1->expects(static::once())
404 404
             ->method('resolveEntryNameByContext')
405 405
             ->with(static::equalTo($entryName), static::equalTo($context))
406
-            ->will(static::returnCallback(function () use (&$actualSequence) {
406
+            ->will(static::returnCallback(function() use (&$actualSequence) {
407 407
                 $actualSequence[] = 1;
408 408
             }));
409 409
         $entryNameResolverChain->prependResolver($mockResolver1);
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
test/phpunit/tests/EntryNameResolverIntegrationTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
src/EntryNameResolverManagerInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
test/phpunit/tests/ResolverByModuleContextMapFunctionalTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
test/phpunit/tests/ResolverByClassNameFunctionalTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
ContextResolver/vendor/service/module2/src/ServiceComponentModule2.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
ContextResolver/vendor/service/module1/src/ServiceComponentModule1.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.
vendor/custom-service/service/src/TestComponentInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/nnx-framework/entry-name-resolver
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/nnx-framework/entry-name-resolver
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace Nnx\EntryNameResolver;
7 7
 
8 8
 use Zend\ServiceManager\AbstractPluginManager;
Please login to merge, or discard this patch.