Completed
Push — symfony3-additional ( f443a4 )
by Kamil
18:14
created
src/Sylius/Bundle/CoreBundle/Context/CustomerContext.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * Gets customer based on currently logged user.
47 47
      *
48
-     * @return CustomerInterface|null
48
+     * @return null|\Sylius\Component\Customer\Model\CustomerInterface
49 49
      */
50 50
     public function getCustomer()
51 51
     {
Please login to merge, or discard this patch.
Sylius/Bundle/OrderBundle/NumberAssigner/OrderNumberAssignerInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/RequestConfiguration.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     /**
165 165
      * @param $name
166 166
      *
167
-     * @return mixed|null|string
167
+     * @return string
168 168
      */
169 169
     public function getRedirectRoute($name)
170 170
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @param object|null $resource
227
+     * @param \Sylius\Component\Resource\Model\ResourceInterface|null $resource
228 228
      *
229 229
      * @return array
230 230
      */
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
     }
344 344
 
345 345
     /**
346
-     * @param $parameter
346
+     * @param string $parameter
347 347
      * @param array $defaults
348 348
      *
349 349
      * @return array
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
     /**
424 424
      * @param null $message
425 425
      *
426
-     * @return mixed|null
426
+     * @return string
427 427
      */
428 428
     public function getFlashMessage($message)
429 429
     {
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
     }
448 448
 
449 449
     /**
450
-     * @return mixed|null
450
+     * @return string
451 451
      */
452 452
     public function getSerializationVersion()
453 453
     {
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Configuration/ConfigurationSourceFactoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/AssetTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -101,6 +101,9 @@
 block discarded – undo
101 101
         return $webDirectory;
102 102
     }
103 103
 
104
+    /**
105
+     * @param string $webDirectory
106
+     */
104 107
     private function assertFileContent($lines, $webDirectory)
105 108
     {
106 109
         foreach ($lines as $line) {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Twig/ThemeFilesystemLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-     * @param TemplateReferenceInterface|string $template
107
+     * @param string $template
108 108
      *
109 109
      * @return string
110 110
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/AddressInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -30,6 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     /**
32 32
      * @param string $name
33
+     * @return void
33 34
      */
34 35
     public function setName($name);
35 36
 
@@ -40,6 +41,7 @@  discard block
 block discarded – undo
40 41
 
41 42
     /**
42 43
      * @param string $description
44
+     * @return void
43 45
      */
44 46
     public function setDescription($description);
45 47
 
@@ -50,11 +52,13 @@  discard block
 block discarded – undo
50 52
 
51 53
     /**
52 54
      * @param PermissionInterface $permission
55
+     * @return void
53 56
      */
54 57
     public function addPermission(PermissionInterface $permission);
55 58
 
56 59
     /**
57 60
      * @param PermissionInterface $permission
61
+     * @return void
58 62
      */
59 63
     public function removePermission(PermissionInterface $permission);
60 64
 
@@ -72,6 +76,7 @@  discard block
 block discarded – undo
72 76
 
73 77
     /**
74 78
      * @param RoleInterface $role
79
+     * @return void
75 80
      */
76 81
     public function setParent(RoleInterface $role);
77 82
 
@@ -87,11 +92,13 @@  discard block
 block discarded – undo
87 92
 
88 93
     /**
89 94
      * @param RoleInterface $role
95
+     * @return void
90 96
      */
91 97
     public function addChild(RoleInterface $role);
92 98
 
93 99
     /**
94 100
      * @param RoleInterface $role
101
+     * @return void
95 102
      */
96 103
     public function removeChild(RoleInterface $role);
97 104
 
@@ -109,6 +116,7 @@  discard block
 block discarded – undo
109 116
 
110 117
     /**
111 118
      * @param int $left
119
+     * @return void
112 120
      */
113 121
     public function setLeft($left);
114 122
 
@@ -119,6 +127,7 @@  discard block
 block discarded – undo
119 127
 
120 128
     /**
121 129
      * @param int $right
130
+     * @return void
122 131
      */
123 132
     public function setRight($right);
124 133
 
@@ -129,6 +138,7 @@  discard block
 block discarded – undo
129 138
 
130 139
     /**
131 140
      * @param int $level
141
+     * @return void
132 142
      */
133 143
     public function setLevel($level);
134 144
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/CountryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param OptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(OptionInterface $option = null);
32 33
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
      * Set internal value.
42 43
      *
43 44
      * @param string $value
45
+     * @return void
44 46
      */
45 47
     public function setValue($value);
46 48
 
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Model/ZoneInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@  discard block
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param string $name
34
+     * @return void
34 35
      */
35 36
     public function setName($name);
36 37
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
 
42 43
     /**
43 44
      * @param VariableInterface|null $object
45
+     * @return void
44 46
      */
45 47
     public function setObject(VariableInterface $object = null);
46 48
 
@@ -51,16 +53,19 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param Collection $options
56
+     * @return void
54 57
      */
55 58
     public function setOptions(Collection $options);
56 59
 
57 60
     /**
58 61
      * @param OptionValueInterface $option
62
+     * @return void
59 63
      */
60 64
     public function addOption(OptionValueInterface $option);
61 65
 
62 66
     /**
63 67
      * @param OptionValueInterface $option
68
+     * @return void
64 69
      */
65 70
     public function removeOption(OptionValueInterface $option);
66 71
 
Please login to merge, or discard this patch.