Completed
Push — pr-9119 ( 4ecfb3 )
by Kamil
54:28 queued 25:29
created
src/Sylius/Bundle/CoreBundle/Templating/Helper/VariantResolverHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Bundle\CoreBundle\Templating\Helper;
15 15
 
Please login to merge, or discard this patch.
Bundle/CoreBundle/spec/Templating/Helper/VariantResolverHelperSpec.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Bundle\CoreBundle\Templating\Helper;
15 15
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,7 @@
 block discarded – undo
33 33
     function it_returns_null_if_product_has_no_variants(
34 34
         ProductVariantResolverInterface $productVariantResolver,
35 35
         ProductInterface $product
36
-    )
37
-    {
36
+    ) {
38 37
         $productVariantResolver->getVariant($product)->willReturn(null);
39 38
 
40 39
         $this->resolveVariant($product)->shouldBeEqualTo(null);
Please login to merge, or discard this patch.