Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
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/ThemeBundle/Translation/Finder/TranslationFilesFinder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * @param string $path
55 55
      *
56
-     * @return array
56
+     * @return \Symfony\Component\Finder\Finder
57 57
      */
58 58
     private function getFiles($path)
59 59
     {
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/Addressing/Model/ProvinceInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $name
29
+     * @return void
29 30
      */
30 31
     public function setName($name);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param string $abbreviation
40
+     * @return void
39 41
      */
40 42
     public function setAbbreviation($abbreviation);
41 43
 
@@ -46,6 +48,7 @@  discard block
 block discarded – undo
46 48
 
47 49
     /**
48 50
      * @param CountryInterface $country
51
+     * @return void
49 52
      */
50 53
     public function setCountry(CountryInterface $country = null);
51 54
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneMemberInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param ZoneInterface $belongsTo
29
+     * @return void
29 30
      */
30 31
     public function setBelongsTo(ZoneInterface $belongsTo = null);
31 32
 }
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.