Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Bundle/CoreBundle/Security/UserImpersonatorInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface UserImpersonatorInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function impersonate(UserInterface $user): void;
21 24
 }
Please login to merge, or discard this patch.
Sylius/Bundle/FixturesBundle/Listener/BeforeFixtureListenerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface BeforeFixtureListenerInterface extends ListenerInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function beforeFixture(FixtureEvent $fixtureEvent, array $options): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Listener/BeforeSuiteListenerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface BeforeSuiteListenerInterface extends ListenerInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function beforeSuite(SuiteEvent $suiteEvent, array $options): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Loader/FixtureLoaderInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
 
19 19
 interface FixtureLoaderInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function load(SuiteInterface $suite, FixtureInterface $fixture, array $options): void;
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/Loader/SuiteLoaderInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface SuiteLoaderInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function load(SuiteInterface $suite): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/FixturesBundle/spec/Suite/SuiteSpec.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @param Collaborator[] ...$collaborators
79
+     * @param FixtureInterface $collaborators
79 80
      */
80 81
     private function createGenerator(Collaborator ...$collaborators): \Generator
81 82
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/LocaleBundle/Templating/Helper/LocaleHelperInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface LocaleHelperInterface extends HelperInterface
19 19
 {
20
+    /**
21
+     * @return string
22
+     */
20 23
     public function convertCodeToName(string $localeCode): ?string;
21 24
 }
Please login to merge, or discard this patch.
Sylius/Bundle/OrderBundle/NumberAssigner/OrderNumberAssignerInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface OrderNumberAssignerInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function assignNumber(OrderInterface $order): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/FlashHelperInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -18,13 +18,22 @@
 block discarded – undo
18 18
 
19 19
 interface FlashHelperInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function addSuccessFlash(
22 25
         RequestConfiguration $requestConfiguration,
23 26
         string $actionName,
24 27
         ?ResourceInterface $resource = null
25 28
     ): void;
26 29
 
30
+    /**
31
+     * @return void
32
+     */
27 33
     public function addErrorFlash(RequestConfiguration $requestConfiguration, string $actionName): void;
28 34
 
35
+    /**
36
+     * @return void
37
+     */
29 38
     public function addFlashFromEvent(RequestConfiguration $requestConfiguration, ResourceControllerEvent $event): void;
30 39
 }
Please login to merge, or discard this patch.