Completed
Pull Request — 1.0 (#993)
by Rob
03:15
created
Imagine/Filter/FilterManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use Liip\ImagineBundle\Binary\FileBinaryInterface;
17 17
 use Liip\ImagineBundle\Binary\MimeTypeGuesserInterface;
18 18
 use Liip\ImagineBundle\Imagine\Filter\Loader\LoaderInterface;
19
-use Liip\ImagineBundle\Imagine\Filter\PostProcessor\ConfigurablePostProcessorInterface;
20 19
 use Liip\ImagineBundle\Imagine\Filter\PostProcessor\PostProcessorInterface;
21 20
 use Liip\ImagineBundle\Model\Binary;
22 21
 
Please login to merge, or discard this patch.
Imagine/Filter/PostProcessor/AbstractPostProcessor.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,6 @@  discard block
 block discarded – undo
51 51
      * Performs post-process operation on passed binary and returns the resulting binary.
52 52
      *
53 53
      * @param BinaryInterface $binary
54
-     * @param array           $options
55 54
      *
56 55
      * @throws ProcessFailedException
57 56
      *
@@ -103,7 +102,7 @@  discard block
 block discarded – undo
103 102
     abstract protected function doProcess(BinaryInterface $binary, array $options);
104 103
 
105 104
     /**
106
-     * @param array $arguments
105
+     * @param string[] $arguments
107 106
      * @param array $options
108 107
      *
109 108
      * @return ProcessBuilder
@@ -155,7 +154,7 @@  discard block
 block discarded – undo
155 154
     /**
156 155
      * @param BinaryInterface $binary
157 156
      * @param array           $options
158
-     * @param null            $prefix
157
+     * @param string            $prefix
159 158
      *
160 159
      * @return string
161 160
      */
@@ -199,7 +198,7 @@  discard block
 block discarded – undo
199 198
 
200 199
     /**
201 200
      * @param Process $process
202
-     * @param array   $validReturns
201
+     * @param integer[]   $validReturns
203 202
      * @param array   $errorStrings
204 203
      *
205 204
      * @return bool
Please login to merge, or discard this patch.
Imagine/Filter/PostProcessor/JpegOptimPostProcessor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Liip\ImagineBundle\Imagine\Filter\PostProcessor;
13 13
 
14 14
 use Liip\ImagineBundle\Binary\BinaryInterface;
15
-use Liip\ImagineBundle\Binary\FileBinaryInterface;
16 15
 use Liip\ImagineBundle\Exception\Imagine\Filter\PostProcessor\InvalidOptionException;
17 16
 use Liip\ImagineBundle\Model\Binary;
18 17
 use Symfony\Component\Process\Exception\ProcessFailedException;
Please login to merge, or discard this patch.
Imagine/Filter/PostProcessor/PostProcessorInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
      * Performs post-process operation on passed binary and returns the resulting binary.
24 24
      *
25 25
      * @param BinaryInterface $binary
26
-     * @param array           $options
27 26
      *
28 27
      * @throws ProcessFailedException
29 28
      *
Please login to merge, or discard this patch.
Imagine/Filter/PostProcessor/OptiPngPostProcessor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Liip\ImagineBundle\Imagine\Filter\PostProcessor;
13 13
 
14 14
 use Liip\ImagineBundle\Binary\BinaryInterface;
15
-use Liip\ImagineBundle\Binary\FileBinaryInterface;
16 15
 use Liip\ImagineBundle\Exception\Imagine\Filter\PostProcessor\InvalidOptionException;
17 16
 use Liip\ImagineBundle\Model\Binary;
18 17
 use Symfony\Component\Process\Exception\ProcessFailedException;
Please login to merge, or discard this patch.