Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
Sylius/Bundle/ResourceBundle/DependencyInjection/Driver/DriverInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 
19 19
 interface DriverInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function load(ContainerBuilder $container, MetadataInterface $metadata): void;
22 25
 
23 26
     /**
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/Form/Builder/DefaultFormBuilderInterface.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 DefaultFormBuilderInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function build(MetadataInterface $metadata, FormBuilderInterface $formBuilder, array $options): void;
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Validator/DisabledValidator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
         }
43 43
     }
44 44
 
45
+    /**
46
+     * @param ToggleableInterface $value
47
+     */
45 48
     private function ensureValueImplementsToggleableInterface($value): void
46 49
     {
47 50
         if (!($value instanceof ToggleableInterface)) {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ReviewBundle/Updater/ReviewableRatingUpdaterInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -18,7 +18,13 @@
 block discarded – undo
18 18
 
19 19
 interface ReviewableRatingUpdaterInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function update(ReviewableInterface $reviewSubject): void;
22 25
 
26
+    /**
27
+     * @return void
28
+     */
23 29
     public function updateFromReview(ReviewInterface $review): void;
24 30
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ShopBundle/EmailManager/ContactEmailManagerInterface.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 ContactEmailManagerInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function sendContactRequest(array $data, array $recipients): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ShopBundle/EmailManager/OrderEmailManagerInterface.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 OrderEmailManagerInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function sendConfirmationEmail(OrderInterface $order): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Asset/Installer/OutputAwareInterface.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 OutputAwareInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function setOutput(OutputInterface $output): void;
21 24
 }
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Configuration/ConfigurationSourceFactoryInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 
21 21
 interface ConfigurationSourceFactoryInterface
22 22
 {
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function buildConfiguration(ArrayNodeDefinition $node): void;
24 27
 
25 28
     /**
Please login to merge, or discard this patch.
ThemeBundle/Configuration/Test/TestThemeConfigurationManagerInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -17,12 +17,19 @@
 block discarded – undo
17 17
 {
18 18
     public function findAll(): array;
19 19
 
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function add(array $configuration): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function remove(string $themeName): void;
23 29
 
24 30
     /**
25 31
      * Clear currently used configurations storage.
32
+     * @return void
26 33
      */
27 34
     public function clear(): void;
28 35
 }
Please login to merge, or discard this patch.