Completed
Push — fixtures/delete-old-ones ( 589298...6437b8 )
by Kamil
71:11 queued 37:23
created
Component/Core/spec/Taxation/Applicator/OrderItemsTaxesApplicatorSpec.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,8 @@
 block discarded – undo
14 14
 use Doctrine\Common\Collections\ArrayCollection;
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use PhpSpec\ObjectBehavior;
17
-use Prophecy\Argument;
18
-use Sylius\Component\Core\Distributor\IntegerDistributorInterface;
19 17
 use Sylius\Component\Addressing\Model\ZoneInterface;
18
+use Sylius\Component\Core\Distributor\IntegerDistributorInterface;
20 19
 use Sylius\Component\Core\Model\AdjustmentInterface;
21 20
 use Sylius\Component\Core\Model\OrderInterface;
22 21
 use Sylius\Component\Core\Model\OrderItemInterface;
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Uploader/ImageUploaderInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -17,11 +17,13 @@
 block discarded – undo
17 17
 {
18 18
     /**
19 19
      * @param ImageInterface $image
20
+     * @return void
20 21
      */
21 22
     public function upload(ImageInterface $image);
22 23
 
23 24
     /**
24 25
      * @param string $path
26
+     * @return boolean
25 27
      */
26 28
     public function remove($path);
27 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Data/DataProviderInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param Grid $grid
24
-     * @param array $parameters
24
+     * @param Parameters $parameters
25 25
      *
26 26
      * @return mixed
27 27
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/FieldTypes/DatetimeFieldType.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Component\Grid\DataExtractor\DataExtractorInterface;
15 15
 use Sylius\Component\Grid\Definition\Field;
16
-use Webmozart\Assert\Assert;
17 16
 use Symfony\Component\OptionsResolver\OptionsResolver;
17
+use Webmozart\Assert\Assert;
18 18
 
19 19
 /**
20 20
  * @author Mateusz Zalewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filtering/FilterInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,8 +21,9 @@
 block discarded – undo
21 21
     /**
22 22
      * @param DataSourceInterface $dataSource
23 23
      * @param string $name
24
-     * @param mixed $data
24
+     * @param string $data
25 25
      * @param array $options
26
+     * @return void
26 27
      */
27 28
     public function apply(DataSourceInterface $dataSource, $name, $data, array $options);
28 29
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/spec/Data/DataProviderSpec.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@  discard block
 block discarded – undo
12 12
 namespace spec\Sylius\Component\Grid\Data;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16 15
 use Sylius\Component\Grid\Data\DataProvider;
17 16
 use Sylius\Component\Grid\Data\DataProviderInterface;
18 17
 use Sylius\Component\Grid\Data\DataSourceInterface;
@@ -21,7 +20,6 @@  discard block
 block discarded – undo
21 20
 use Sylius\Component\Grid\Filtering\FiltersApplicatorInterface;
22 21
 use Sylius\Component\Grid\Parameters;
23 22
 use Sylius\Component\Grid\Sorting\SorterInterface;
24
-use Sylius\Component\Registry\ServiceRegistryInterface;
25 23
 
26 24
 /**
27 25
  * @mixin DataProvider
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/spec/Definition/ActionGroupSpec.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,8 @@
 block discarded – undo
12 12
 namespace spec\Sylius\Component\Grid\Definition;
13 13
 
14 14
 use PhpSpec\ObjectBehavior;
15
-use Prophecy\Argument;
16
-use Sylius\Component\Grid\Definition\ActionGroup;
17 15
 use Sylius\Component\Grid\Definition\Action;
16
+use Sylius\Component\Grid\Definition\ActionGroup;
18 17
 
19 18
 /**
20 19
  * @mixin ActionGroup
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/spec/Definition/ActionSpec.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,8 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\Sylius\Component\Grid\Definition;
13 13
 
14
-use Sylius\Component\Grid\Definition\Action;
15 14
 use PhpSpec\ObjectBehavior;
16
-use Prophecy\Argument;
15
+use Sylius\Component\Grid\Definition\Action;
17 16
 
18 17
 /**
19 18
  * @mixin Action
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/spec/Definition/FieldSpec.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,8 @@
 block discarded – undo
11 11
 
12 12
 namespace spec\Sylius\Component\Grid\Definition;
13 13
 
14
-use Sylius\Component\Grid\Definition\Field;
15 14
 use PhpSpec\ObjectBehavior;
16
-use Prophecy\Argument;
15
+use Sylius\Component\Grid\Definition\Field;
17 16
 
18 17
 /**
19 18
  * @mixin Field
Please login to merge, or discard this patch.