Completed
Branch master (429264)
by Kamil
37:02
created
src/Sylius/Behat/Service/ResponseLoader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     /**
87 87
      * @param string $source
88
-     * @param mixed $content
88
+     * @param string $content
89 89
      *
90 90
      * @throws \RuntimeException
91 91
      */
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
     /**
100 100
      * @param string $source
101
-     * @param mixed $content
101
+     * @param string $content
102 102
      *
103 103
      * @throws \RuntimeException
104 104
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SecurityServiceInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -22,14 +22,19 @@
 block discarded – undo
22 22
      * @param string $email
23 23
      *
24 24
      * @throws \InvalidArgumentException
25
+     * @return void
25 26
      */
26 27
     public function logIn($email);
27 28
     
29
+    /**
30
+     * @return void
31
+     */
28 32
     public function logOut();
29 33
 
30 34
     /**
31 35
      * @param UserInterface $user
32 36
      * @param callable $action
37
+     * @return void
33 38
      */
34 39
     public function performActionAs(UserInterface $user, callable $action);
35 40
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Setter/ChannelContextSetterInterface.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 ChannelInterface $channel
23
+     * @return void
23 24
      */
24 25
     public function setChannel(ChannelInterface $channel);
25 26
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Setter/CookieSetterInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * @param string $name
21 21
      * @param string $value
22
+     * @return void
22 23
      */
23 24
     public function setCookie($name, $value);
24 25
 }
Please login to merge, or discard this patch.
spec/Validator/Constraints/ProvinceAddressConstraintValidatorSpec.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -151,6 +151,9 @@
 block discarded – undo
151 151
         $this->validate($address, $constraint);
152 152
     }
153 153
 
154
+    /**
155
+     * @param string $propertyPath
156
+     */
154 157
     private function createViolation($propertyPath)
155 158
     {
156 159
         return new ConstraintViolation('message', 'template', [], 'root', $propertyPath, 'invalidValue');
Please login to merge, or discard this patch.
spec/Validator/Constraints/ShippableAddressConstraintValidatorSpec.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         $this->validate($address, $constraint);
72 72
     }
73 73
 
74
+    /**
75
+     * @param string $propertyPath
76
+     */
74 77
     private function createViolation($propertyPath)
75 78
     {
76 79
         return new ConstraintViolation('message', 'template', [], 'root', $propertyPath, 'invalidValue');
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/Controller/DashboardController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     /**
44 44
      * @param Request $request
45 45
      *
46
-     * @return Response
46
+     * @return \Symfony\Component\HttpFoundation\Response
47 47
      */
48 48
     public function indexAction(Request $request)
49 49
     {
Please login to merge, or discard this patch.
Bundle/ArchetypeBundle/DependencyInjection/SyliusArchetypeExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
     /**
120 120
      * @param array $config
121 121
      *
122
-     * @return array
122
+     * @return ContainerBuilder
123 123
      */
124 124
     private function defineDefaultOrmRepository(array $config)
125 125
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ArchetypeBundle/EventListener/LoadMetadataSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @return array
42
+     * @return string[]
43 43
      */
44 44
     public function getSubscribedEvents()
45 45
     {
Please login to merge, or discard this patch.