Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Behat/Service/Setter/ChannelContextSetterInterface.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 ChannelContextSetterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setChannel(ChannelInterface $channel);
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedSecurityServiceInterface.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 SharedSecurityServiceInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function performActionAsAdminUser(AdminUserInterface $adminUser, callable $action);
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedStorageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -29,13 +29,18 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string $key
32
+     * @return void
32 33
      */
33 34
     public function set($key, $resource);
34 35
 
36
+    /**
37
+     * @return string
38
+     */
35 39
     public function getLatestResource();
36 40
 
37 41
     /**
38 42
      * @throws \RuntimeException
43
+     * @return void
39 44
      */
40 45
     public function setClipboard(array $clipboard);
41 46
 }
Please login to merge, or discard this patch.
Sylius/Bundle/AdminBundle/EmailManager/ShipmentEmailManagerInterface.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 ShipmentEmailManagerInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function sendConfirmationEmail(ShipmentInterface $shipment): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Assigner/IpAssignerInterface.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 IpAssignerInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function assign(OrderInterface $order, Request $request): void;
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Installer/Setup/ChannelSetupInterface.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 ChannelSetupInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function setup(LocaleInterface $locale, CurrencyInterface $currency): void;
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Remover/ReviewerReviewsRemoverInterface.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 ReviewerReviewsRemoverInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function removeReviewerReviews(ReviewerInterface $author): void;
21 24
 }
Please login to merge, or discard this patch.
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.