Completed
Push — symfony3-directorystructure ( c2fd26 )
by Kamil
85:38 queued 68:27
created
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -314,6 +314,7 @@  discard block
 block discarded – undo
314 314
 
315 315
     /**
316 316
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
317
+     * @param integer $discount
317 318
      */
318 319
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
319 320
     {
@@ -634,7 +635,7 @@  discard block
 block discarded – undo
634 635
     }
635 636
 
636 637
     /**
637
-     * @param array $taxonCodes
638
+     * @param string[] $taxonCodes
638 639
      *
639 640
      * @return array
640 641
      */
@@ -644,7 +645,7 @@  discard block
 block discarded – undo
644 645
     }
645 646
 
646 647
     /**
647
-     * @param array $productCodes
648
+     * @param string[] $productCodes
648 649
      *
649 650
      * @return array
650 651
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Taxonomy/Model/Taxon.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/Product.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShippingMethod.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOption.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionValue.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TranslatableTrait;
17
-use Sylius\Component\Resource\Model\TranslationInterface;
18 17
 
19 18
 /**
20 19
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/CreatePageInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -38,17 +38,20 @@  discard block
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param string $name
41
+     * @return void
41 42
      */
42 43
     public function deleteTaxonOnPageByName($name);
43 44
 
44 45
     /**
45 46
      * @param string $description
46 47
      * @param string $languageCode
48
+     * @return void
47 49
      */
48 50
     public function describeItAs($description, $languageCode);
49 51
 
50 52
     /**
51 53
      * @param TaxonInterface $taxon
54
+     * @return void
52 55
      */
53 56
     public function chooseParent(TaxonInterface $taxon);
54 57
 
@@ -62,33 +65,39 @@  discard block
 block discarded – undo
62 65
     /**
63 66
      * @param string $name
64 67
      * @param string $languageCode
68
+     * @return void
65 69
      */
66 70
     public function nameIt($name, $languageCode);
67 71
 
68 72
     /**
69 73
      * @param string $code
74
+     * @return void
70 75
      */
71 76
     public function specifyCode($code);
72 77
 
73 78
     /**
74 79
      * @param string $slug
75 80
      * @param string $languageCode
81
+     * @return void
76 82
      */
77 83
     public function specifySlug($slug, $languageCode);
78 84
 
79 85
     /**
80 86
      * @param string $path
81 87
      * @param string $code
88
+     * @return void
82 89
      */
83 90
     public function attachImage($path, $code = null);
84 91
 
85 92
     /**
86 93
      * @param TaxonInterface $taxon
94
+     * @return void
87 95
      */
88 96
     public function moveUp(TaxonInterface $taxon);
89 97
 
90 98
     /**
91 99
      * @param TaxonInterface $taxon
100
+     * @return void
92 101
      */
93 102
     public function moveDown(TaxonInterface $taxon);
94 103
 
@@ -112,11 +121,13 @@  discard block
 block discarded – undo
112 121
     /**
113 122
      * @param TaxonInterface $taxon
114 123
      * @param int $expectedPosition
124
+     * @return void
115 125
      */
116 126
     public function waitForTaxonRelocation(TaxonInterface $taxon, $expectedPosition);
117 127
 
118 128
     /**
119 129
      * @param string $locale
130
+     * @return void
120 131
      */
121 132
     public function activateLanguageTab($locale);
122 133
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/UpdatePageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -23,11 +23,13 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @param string $description
25 25
      * @param string $languageCode
26
+     * @return void
26 27
      */
27 28
     public function describeItAs($description, $languageCode);
28 29
 
29 30
     /**
30 31
      * @param TaxonInterface $taxon
32
+     * @return void
31 33
      */
32 34
     public function chooseParent(TaxonInterface $taxon);
33 35
 
@@ -39,12 +41,14 @@  discard block
 block discarded – undo
39 41
     /**
40 42
      * @param string $name
41 43
      * @param string $languageCode
44
+     * @return void
42 45
      */
43 46
     public function nameIt($name, $languageCode);
44 47
 
45 48
     /**
46 49
      * @param string $slug
47 50
      * @param string $languageCode
51
+     * @return void
48 52
      */
49 53
     public function specifySlug($slug, $languageCode);
50 54
 
@@ -56,6 +60,7 @@  discard block
 block discarded – undo
56 60
     /**
57 61
      * @param string $path
58 62
      * @param string $code
63
+     * @return void
59 64
      */
60 65
     public function attachImage($path, $code = null);
61 66
 
@@ -75,13 +80,18 @@  discard block
 block discarded – undo
75 80
 
76 81
     /**
77 82
      * @param string $code
83
+     * @return void
78 84
      */
79 85
     public function removeImageWithCode($code);
80 86
 
87
+    /**
88
+     * @return void
89
+     */
81 90
     public function removeFirstImage();
82 91
 
83 92
     /**
84 93
      * @param string $languageCode
94
+     * @return void
85 95
      */
86 96
     public function enableSlugModification($languageCode = 'en_US');
87 97
 
@@ -93,6 +103,7 @@  discard block
 block discarded – undo
93 103
     /**
94 104
      * @param string $code
95 105
      * @param string $path
106
+     * @return void
96 107
      */
97 108
     public function changeImageWithCode($code, $path);
98 109
 
@@ -126,6 +137,7 @@  discard block
 block discarded – undo
126 137
 
127 138
     /**
128 139
      * @param string $locale
140
+     * @return void
129 141
      */
130 142
     public function activateLanguageTab($locale);
131 143
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/IndexPerTaxonPageInterface.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -20,8 +20,12 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $shippingMethod
23
+     * @return void
23 24
      */
24 25
     public function selectShippingMethod($shippingMethod);
25 26
 
27
+    /**
28
+     * @return void
29
+     */
26 30
     public function continueCheckout();
27 31
 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Sylius\Behat\Page\Admin\Product;
13 13
 
14 14
 use Sylius\Behat\Page\Admin\Crud\IndexPageInterface as CrudIndexPageInterface;
15
-use Sylius\Component\Core\Model\ProductInterface;
16 15
 
17 16
 /**
18 17
  * @author Anna Walasek <[email protected]>
Please login to merge, or discard this patch.