Completed
Push — assert-overflow ( 0688b3...fbf83a )
by Kamil
66:00 queued 44:43
created
src/Sylius/Component/Core/Shipping/Calculator/FlatRateCalculator.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Component\Core\Model\ShipmentInterface;
15 15
 use Sylius\Component\Shipping\Calculator\CalculatorInterface;
16
-use Sylius\Component\Shipping\Model\ShipmentInterface  as BaseShipmentInterface;
16
+use Sylius\Component\Shipping\Model\ShipmentInterface as BaseShipmentInterface;
17 17
 use Webmozart\Assert\Assert;
18 18
 
19 19
 /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/TaxonExampleFactory.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\CoreBundle\Fixture\Factory;
13 13
 
14
-use Doctrine\Common\Persistence\ObjectManager;
15 14
 use Sylius\Component\Core\Formatter\StringInflector;
16 15
 use Sylius\Component\Core\Model\TaxonInterface;
17 16
 use Sylius\Component\Locale\Model\LocaleInterface;
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/AdminUserExampleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
                 return $this->faker->email;
97 97
             })
98 98
             ->setDefault('username', function (Options $options) {
99
-                return $this->faker->firstName.' '.$this->faker->lastName;
99
+                return $this->faker->firstName . ' ' . $this->faker->lastName;
100 100
             })
101 101
             ->setDefault('enabled', true)
102 102
             ->setAllowedTypes('enabled', 'bool')
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/ChannelExampleFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     ) {
64 64
         $this->channelFactory = $channelFactory;
65 65
         $this->localeRepository = $localeRepository;
66
-        $this->currencyRepository= $currencyRepository;
66
+        $this->currencyRepository = $currencyRepository;
67 67
 
68 68
         $this->faker = \Faker\Factory::create();
69 69
         $this->optionsResolver = new OptionsResolver();
Please login to merge, or discard this patch.
Sylius/Bundle/LocaleBundle/DependencyInjection/SyliusLocaleExtension.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,7 @@
 block discarded – undo
14 14
 use Sylius\Bundle\ResourceBundle\DependencyInjection\Extension\AbstractResourceExtension;
15 15
 use Symfony\Component\Config\FileLocator;
16 16
 use Symfony\Component\DependencyInjection\ContainerBuilder;
17
-use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
18 17
 use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
19
-use Symfony\Component\DependencyInjection\Reference;
20 18
 
21 19
 /**
22 20
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function load(array $config, ContainerBuilder $container)
28 28
     {
29 29
         $config = $this->processConfiguration($this->getConfiguration([], $container), $config);
30
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
30
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
31 31
 
32 32
         $this->registerResources('sylius', $config['driver'], $config['resources'], $container);
33 33
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Promotion/CreatePageInterface.php 1 patch
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -22,16 +22,19 @@  discard block
 block discarded – undo
22 22
 {
23 23
     /**
24 24
      * @param string $code
25
+     * @return void
25 26
      */
26 27
     public function specifyCode($code);
27 28
 
28 29
     /**
29 30
      * @param string $name
31
+     * @return void
30 32
      */
31 33
     public function nameIt($name);
32 34
 
33 35
     /**
34 36
      * @param string $ruleName
37
+     * @return void
35 38
      */
36 39
     public function addRule($ruleName);
37 40
 
@@ -39,12 +42,14 @@  discard block
 block discarded – undo
39 42
      * @param string $option
40 43
      * @param string $value
41 44
      * @param bool $multiple
45
+     * @return void
42 46
      */
43 47
     public function selectRuleOption($option, $value, $multiple = false);
44 48
 
45 49
     /**
46 50
      * @param string $option
47 51
      * @param string $value
52
+     * @return void
48 53
      */
49 54
     public function fillRuleOption($option, $value);
50 55
 
@@ -52,11 +57,13 @@  discard block
 block discarded – undo
52 57
      * @param string $channelName
53 58
      * @param string $option
54 59
      * @param string $value
60
+     * @return void
55 61
      */
56 62
     public function fillRuleOptionForChannel($channelName, $option, $value);
57 63
 
58 64
     /**
59 65
      * @param string $actionName
66
+     * @return void
60 67
      */
61 68
     public function addAction($actionName);
62 69
 
@@ -64,12 +71,14 @@  discard block
 block discarded – undo
64 71
      * @param string $option
65 72
      * @param string $value
66 73
      * @param bool $multiple
74
+     * @return void
67 75
      */
68 76
     public function selectActionOption($option, $value, $multiple = false);
69 77
 
70 78
     /**
71 79
      * @param string $option
72 80
      * @param string $value
81
+     * @return void
73 82
      */
74 83
     public function fillActionOption($option, $value);
75 84
 
@@ -77,30 +86,41 @@  discard block
 block discarded – undo
77 86
      * @param string $channelName
78 87
      * @param string $option
79 88
      * @param string $value
89
+     * @return void
80 90
      */
81 91
     public function fillActionOptionForChannel($channelName, $option, $value);
82 92
 
83 93
     /**
84 94
      * @param string $limit
95
+     * @return void
85 96
      */
86 97
     public function fillUsageLimit($limit);
87 98
 
99
+    /**
100
+     * @return void
101
+     */
88 102
     public function makeExclusive();
89 103
 
104
+    /**
105
+     * @return void
106
+     */
90 107
     public function checkCouponBased();
91 108
 
92 109
     /**
93 110
      * @param string $name
111
+     * @return void
94 112
      */
95 113
     public function checkChannel($name);
96 114
 
97 115
     /**
98 116
      * @param \DateTime $dateTime
117
+     * @return void
99 118
      */
100 119
     public function setStartsAt(\DateTime $dateTime);
101 120
 
102 121
     /**
103 122
      * @param \DateTime $dateTime
123
+     * @return void
104 124
      */
105 125
     public function setEndsAt(\DateTime $dateTime);
106 126
 
@@ -115,6 +135,7 @@  discard block
 block discarded – undo
115 135
      * @param string $option
116 136
      * @param string $value
117 137
      * @param bool $multiple
138
+     * @return void
118 139
      */
119 140
     public function selectFilterOption($option, $value, $multiple = false);
120 141
 }
Please login to merge, or discard this patch.
Sylius/Component/Core/Promotion/Action/DiscountPromotionActionCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Sylius\Component\Core\Model\AdjustmentInterface;
15 15
 use Sylius\Component\Core\Model\OrderInterface;
16 16
 use Sylius\Component\Core\Model\OrderItemUnitInterface;
17
-use Sylius\Component\Promotion\Action\PromotionActionCommandInterface;
18 17
 use Sylius\Component\Promotion\Model\PromotionInterface;
19 18
 use Sylius\Component\Promotion\Model\PromotionSubjectInterface;
20 19
 use Webmozart\Assert\Assert;
Please login to merge, or discard this patch.
Component/Core/Promotion/Action/UnitDiscountPromotionActionCommand.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Sylius\Component\Core\Model\OrderInterface;
16 16
 use Sylius\Component\Core\Model\OrderItemInterface;
17 17
 use Sylius\Component\Core\Model\OrderItemUnitInterface;
18
-use Sylius\Component\Promotion\Action\PromotionActionCommandInterface;
19 18
 use Sylius\Component\Promotion\Model\PromotionInterface;
20 19
 use Sylius\Component\Promotion\Model\PromotionSubjectInterface;
21 20
 use Sylius\Component\Resource\Exception\UnexpectedTypeException;
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Command/SetupCommand.php 3 patches
Unused Use Statements   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,18 +12,14 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\CoreBundle\Command;
13 13
 
14 14
 use Sylius\Component\Core\Model\AdminUserInterface;
15
-use Sylius\Component\Core\Model\ChannelInterface;
16
-use Sylius\Component\Currency\Model\CurrencyInterface;
17 15
 use Sylius\Component\Locale\Model\LocaleInterface;
18
-use Sylius\Component\User\Model\UserInterface;
19 16
 use Symfony\Component\Console\Helper\QuestionHelper;
20 17
 use Symfony\Component\Console\Input\InputInterface;
21 18
 use Symfony\Component\Console\Output\OutputInterface;
22 19
 use Symfony\Component\Console\Question\Question;
23
-use Symfony\Component\Intl\Intl;
20
+use Symfony\Component\Validator\ConstraintViolationListInterface;
24 21
 use Symfony\Component\Validator\Constraints\Email;
25 22
 use Symfony\Component\Validator\Constraints\NotBlank;
26
-use Symfony\Component\Validator\ConstraintViolationListInterface;
27 23
 use Webmozart\Assert\Assert;
28 24
 
29 25
 /**
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
      * @param InputInterface $input
155 155
      * @param OutputInterface $output
156 156
      *
157
-     * @return mixed
157
+     * @return string
158 158
      */
159 159
     private function getAdministratorPassword(InputInterface $input, OutputInterface $output)
160 160
     {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             ->setDescription('Sylius configuration setup.')
47 47
             ->setHelp(<<<EOT
48 48
 The <info>%command.name%</info> command allows user to configure basic Sylius data.
49
-EOT
49
+eot
50 50
             )
51 51
         ;
52 52
     }
Please login to merge, or discard this patch.