Completed
Push — component-bundle ( 0f1f3e )
by Kamil
35:06
created
src/Sylius/Bundle/TaxonomyBundle/Form/Type/TaxonChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     {
61 61
         /** @var ChoiceView $choice */
62 62
         foreach ($view->vars['choices'] as $choice) {
63
-            $choice->label = str_repeat('— ', $choice->data->getLevel()).$choice->label;
63
+            $choice->label = str_repeat('— ', $choice->data->getLevel()) . $choice->label;
64 64
         }
65 65
     }
66 66
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPageInterface.php 1 patch
Doc Comments   +20 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @throws \RuntimeException
24
+     * @return void
24 25
      */
25 26
     public function chooseDifferentBillingAddress();
26 27
 
@@ -39,21 +40,25 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param AddressInterface $billingAddress
43
+     * @return void
42 44
      */
43 45
     public function specifyBillingAddress(AddressInterface $billingAddress);
44 46
 
45 47
     /**
46 48
      * @param string $province
49
+     * @return void
47 50
      */
48 51
     public function selectBillingAddressProvince($province);
49 52
 
50 53
     /**
51 54
      * @param AddressInterface $shippingAddress
55
+     * @return void
52 56
      */
53 57
     public function specifyShippingAddress(AddressInterface $shippingAddress);
54 58
 
55 59
     /**
56 60
      * @param string $province
61
+     * @return void
57 62
      */
58 63
     public function selectShippingAddressProvince($province);
59 64
 
@@ -62,15 +67,20 @@  discard block
 block discarded – undo
62 67
      */
63 68
     public function canSignIn();
64 69
 
70
+    /**
71
+     * @return void
72
+     */
65 73
     public function signIn();
66 74
 
67 75
     /**
68 76
      * @param string $email
77
+     * @return void
69 78
      */
70 79
     public function specifyEmail($email);
71 80
 
72 81
     /**
73 82
      * @param string $password
83
+     * @return void
74 84
      */
75 85
     public function specifyPassword($password);
76 86
 
@@ -86,17 +96,25 @@  discard block
 block discarded – undo
86 96
      */
87 97
     public function getShippingAddressCountry();
88 98
 
99
+    /**
100
+     * @return void
101
+     */
89 102
     public function nextStep();
90 103
 
104
+    /**
105
+     * @return void
106
+     */
91 107
     public function backToStore();
92 108
 
93 109
     /**
94 110
      * @param string $provinceName
111
+     * @return void
95 112
      */
96 113
     public function specifyBillingAddressProvince($provinceName);
97 114
 
98 115
     /**
99 116
      * @param string $provinceName
117
+     * @return void
100 118
      */
101 119
     public function specifyShippingAddressProvince($provinceName);
102 120
 
@@ -112,11 +130,13 @@  discard block
 block discarded – undo
112 130
 
113 131
     /**
114 132
      * @param AddressInterface $address
133
+     * @return void
115 134
      */
116 135
     public function selectShippingAddressFromAddressBook(AddressInterface $address);
117 136
 
118 137
     /**
119 138
      * @param AddressInterface $address
139
+     * @return void
120 140
      */
121 141
     public function selectBillingAddressFromAddressBook(AddressInterface $address);
122 142
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/ShowPageInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@  discard block
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param string $customerName
25
+     * @return boolean
25 26
      */
26 27
     public function hasCustomer($customerName);
27 28
 
@@ -56,6 +57,7 @@  discard block
 block discarded – undo
56 57
 
57 58
     /**
58 59
      * @param string $code
60
+     * @return void
59 61
      */
60 62
     public function specifyTrackingCode($code);
61 63
 
@@ -68,6 +70,7 @@  discard block
 block discarded – undo
68 70
 
69 71
     /**
70 72
      * @param OrderInterface $order
73
+     * @return void
71 74
      */
72 75
     public function shipOrder(OrderInterface $order);
73 76
 
@@ -87,11 +90,13 @@  discard block
 block discarded – undo
87 90
 
88 91
     /**
89 92
      * @param OrderInterface $order
93
+     * @return void
90 94
      */
91 95
     public function completeOrderLastPayment(OrderInterface $order);
92 96
 
93 97
     /**
94 98
      * @param OrderInterface $order
99
+     * @return void
95 100
      */
96 101
     public function refundOrderLastPayment(OrderInterface $order);
97 102
 
@@ -234,8 +239,14 @@  discard block
 block discarded – undo
234 239
      */
235 240
     public function getPaymentState();
236 241
 
242
+    /**
243
+     * @return void
244
+     */
237 245
     public function cancelOrder();
238 246
 
247
+    /**
248
+     * @return void
249
+     */
239 250
     public function deleteOrder();
240 251
 
241 252
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedStorageInterface.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,11 +33,12 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * @param string $key
35 35
      * @param mixed $resource
36
+     * @return void
36 37
      */
37 38
     public function set($key, $resource);
38 39
 
39 40
     /**
40
-     * @return mixed
41
+     * @return string
41 42
      */
42 43
     public function getLatestResource();
43 44
 
@@ -45,6 +46,7 @@  discard block
 block discarded – undo
45 46
      * @param array $clipboard
46 47
      *
47 48
      * @throws \RuntimeException
49
+     * @return void
48 50
      */
49 51
     public function setClipboard(array $clipboard);
50 52
 }
Please login to merge, or discard this patch.
ReviewBundle/DependencyInjection/Compiler/RegisterReviewFactoryPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,10 +27,10 @@
 block discarded – undo
27 27
     public function process(ContainerBuilder $container)
28 28
     {
29 29
         foreach ($container->getParameter('sylius.review.subjects') as $subject => $configuration) {
30
-            $factory = $container->findDefinition('sylius.factory.'.$subject.'_review');
30
+            $factory = $container->findDefinition('sylius.factory.' . $subject . '_review');
31 31
             $reviewFactoryDefinition = new Definition(ReviewFactory::class);
32 32
 
33
-            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.'.$subject.'_review'), $reviewFactoryDefinition);
33
+            $reviewFactory = $container->setDefinition(sprintf('sylius.factory.' . $subject . '_review'), $reviewFactoryDefinition);
34 34
             $reviewFactory->addArgument($factory);
35 35
         }
36 36
     }
Please login to merge, or discard this patch.
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.
src/Sylius/Component/Mailer/Model/EmailInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $code
31
+     * @return void
31 32
      */
32 33
     public function setCode($code);
33 34
 
@@ -38,11 +39,18 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param bool $enabled
42
+     * @return void
41 43
      */
42 44
     public function setEnabled($enabled);
43 45
 
46
+    /**
47
+     * @return void
48
+     */
44 49
     public function enable();
45 50
 
51
+    /**
52
+     * @return void
53
+     */
46 54
     public function disable();
47 55
 
48 56
     /**
@@ -52,6 +60,7 @@  discard block
 block discarded – undo
52 60
 
53 61
     /**
54 62
      * @param string $subject
63
+     * @return void
55 64
      */
56 65
     public function setSubject($subject);
57 66
 
@@ -62,6 +71,7 @@  discard block
 block discarded – undo
62 71
 
63 72
     /**
64 73
      * @param string $content
74
+     * @return void
65 75
      */
66 76
     public function setContent($content);
67 77
 
@@ -72,6 +82,7 @@  discard block
 block discarded – undo
72 82
 
73 83
     /**
74 84
      * @param string $template
85
+     * @return void
75 86
      */
76 87
     public function setTemplate($template);
77 88
 
@@ -82,6 +93,7 @@  discard block
 block discarded – undo
82 93
 
83 94
     /**
84 95
      * @param string $senderName
96
+     * @return void
85 97
      */
86 98
     public function setSenderName($senderName);
87 99
 
@@ -92,6 +104,7 @@  discard block
 block discarded – undo
92 104
 
93 105
     /**
94 106
      * @param string $senderAddress
107
+     * @return void
95 108
      */
96 109
     public function setSenderAddress($senderAddress);
97 110
 }
Please login to merge, or discard this patch.