Completed
Push — to-be-a-hat-or-not-to-be-kuhwa ( 7c7f7b...b72886 )
by Kamil
20:35
created
Bundle/PromotionBundle/DependencyInjection/SyliusPromotionExtension.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -12,12 +12,9 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\PromotionBundle\DependencyInjection;
13 13
 
14 14
 use Sylius\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractResourceExtension;
15
-use Sylius\Component\Resource\Factory\Factory;
16 15
 use Symfony\Component\Config\FileLocator;
17 16
 use Symfony\Component\DependencyInjection\ContainerBuilder;
18
-use Symfony\Component\DependencyInjection\Definition;
19 17
 use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
20
-use Symfony\Component\DependencyInjection\Parameter;
21 18
 use Symfony\Component\DependencyInjection\Reference;
22 19
 
23 20
 /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -20,38 +20,48 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $name
23
+     * @return void
23 24
      */
24 25
     public function specifyFirstName($name);
25 26
 
26 27
     /**
27 28
      * @param string $name
29
+     * @return void
28 30
      */
29 31
     public function specifyLastName($name);
30 32
 
31 33
     /**
32 34
      * @param string $email
35
+     * @return void
33 36
      */
34 37
     public function specifyEmail($email);
35 38
 
36 39
     /**
37 40
      * @param string $birthday
41
+     * @return void
38 42
      */
39 43
     public function specifyBirthday($birthday);
40 44
 
41 45
     /**
42 46
      * @param string $password
47
+     * @return void
43 48
      */
44 49
     public function specifyPassword($password);
45 50
 
46 51
     /**
47 52
      * @param string $gender
53
+     * @return void
48 54
      */
49 55
     public function chooseGender($gender);
50 56
 
51 57
     /**
52 58
      * @param string $group
59
+     * @return void
53 60
      */
54 61
     public function chooseGroup($group);
55 62
 
63
+    /**
64
+     * @return void
65
+     */
56 66
     public function selectCreateAccount();
57 67
 }
Please login to merge, or discard this patch.