Completed
Push — revert-symfony-336 ( 87e565 )
by Kamil
36:02
created
src/Sylius/Bundle/ThemeBundle/Loader/CircularDependencyCheckerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
      * @param ThemeInterface $theme
23 23
      *
24 24
      * @throws CircularDependencyFoundException
25
+     * @return void
25 26
      */
26 27
     public function check(ThemeInterface $theme);
27 28
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Loader/CircularDependencyFoundException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     }
38 38
 
39 39
     /**
40
-     * @param array $themes
40
+     * @param ThemeInterface[] $themes
41 41
      *
42 42
      * @return array
43 43
      */
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Model/ThemeInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $title
36
+     * @return void
36 37
      */
37 38
     public function setTitle($title);
38 39
 
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param string $description
47
+     * @return void
46 48
      */
47 49
     public function setDescription($description);
48 50
 
@@ -53,11 +55,13 @@  discard block
 block discarded – undo
53 55
 
54 56
     /**
55 57
      * @param ThemeAuthor $author
58
+     * @return void
56 59
      */
57 60
     public function addAuthor(ThemeAuthor $author);
58 61
 
59 62
     /**
60 63
      * @param ThemeAuthor $author
64
+     * @return void
61 65
      */
62 66
     public function removeAuthor(ThemeAuthor $author);
63 67
 
@@ -68,11 +72,13 @@  discard block
 block discarded – undo
68 72
 
69 73
     /**
70 74
      * @param ThemeInterface $theme
75
+     * @return void
71 76
      */
72 77
     public function addParent(ThemeInterface $theme);
73 78
 
74 79
     /**
75 80
      * @param ThemeInterface $theme
81
+     * @return void
76 82
      */
77 83
     public function removeParent(ThemeInterface $theme);
78 84
 
@@ -83,11 +89,13 @@  discard block
 block discarded – undo
83 89
 
84 90
     /**
85 91
      * @param ThemeScreenshot $screenshot
92
+     * @return void
86 93
      */
87 94
     public function addScreenshot(ThemeScreenshot $screenshot);
88 95
 
89 96
     /**
90 97
      * @param ThemeScreenshot $screenshot
98
+     * @return void
91 99
      */
92 100
     public function removeScreenshot(ThemeScreenshot $screenshot);
93 101
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/TranslationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @return array
31
+     * @return string[]
32 32
      */
33 33
     protected function getTranslationsLines()
34 34
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/Reloader/UserReloaderInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param UserInterface $user
23
+     * @return void
23 24
      */
24 25
     public function reloadUser(UserInterface $user);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/AttributeType/AttributeTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * @param AttributeValueInterface $attributeValue
34 34
      * @param ExecutionContextInterface $context
35 35
      * @param array $configuration
36
+     * @return void
36 37
      */
37 38
     public function validate(AttributeValueInterface $attributeValue, ExecutionContextInterface $context, array $configuration);
38 39
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelAwareInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param null|ChannelInterface $channel
28
+     * @return void
28 29
      */
29 30
     public function setChannel(ChannelInterface $channel = null);
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Model/ChannelInterface.php 1 patch
Doc Comments   +4 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 $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string $description
42
+     * @return void
41 43
      */
42 44
     public function setDescription($description);
43 45
 
@@ -48,6 +50,7 @@  discard block
 block discarded – undo
48 50
 
49 51
     /**
50 52
      * @param string $hostname
53
+     * @return void
51 54
      */
52 55
     public function setHostname($hostname);
53 56
 
@@ -58,6 +61,7 @@  discard block
 block discarded – undo
58 61
 
59 62
     /**
60 63
      * @param string $color
64
+     * @return void
61 65
      */
62 66
     public function setColor($color);
63 67
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/OrderItemInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param ProductVariantInterface $variant
33
+     * @return void
33 34
      */
34 35
     public function setVariant(ProductVariantInterface $variant);
35 36
 
Please login to merge, or discard this patch.