Completed
Push — remove-content-bundle ( 201341 )
by Kamil
34:43
created
src/Sylius/Component/Taxonomy/Generator/TaxonSlugGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
         $parent = $this->taxonRepository->find($parentId);
51 51
         Assert::notNull($parent, sprintf('There is no parent taxon with id %d.', $parentId));
52 52
 
53
-        return $parent->getSlug().self::SLUG_SEPARATOR.$taxonSlug;
53
+        return $parent->getSlug() . self::SLUG_SEPARATOR . $taxonSlug;
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/spec/Generator/TaxonSlugGeneratorSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@
 block discarded – undo
44 44
         $taxonRepository->find(1)->willReturn($parent);
45 45
         $parent->getSlug()->willReturn('board-games');
46 46
 
47
-        $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games');;
47
+        $this->generate('Battle games', 1)->shouldReturn('board-games/battle-games'); ;
48 48
     }
49 49
 
50 50
     function it_generates_slug_based_on_new_taxon_name_if_this_taxon_has_no_parent()
51 51
     {
52
-        $this->generate('Board games')->shouldReturn('board-games');;
52
+        $this->generate('Board games')->shouldReturn('board-games'); ;
53 53
     }
54 54
 
55 55
     function it_throws_exception_if_parent_taxon_with_given_id_does_not_exist(
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Domain/ManagingOrdersContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@
 block discarded – undo
167 167
      */
168 168
     public function thisOrderHasNotBeenPaidForDays(OrderInterface $order, $amount, $time)
169 169
     {
170
-        $order->setCheckoutCompletedAt(new \DateTime('-'.$amount.' '.$time));
170
+        $order->setCheckoutCompletedAt(new \DateTime('-' . $amount . ' ' . $time));
171 171
         $this->orderManager->flush();
172 172
 
173 173
         $this->unpaidOrdersStateUpdater->cancel();
Please login to merge, or discard this patch.