Completed
Pull Request — master (#18)
by Florian
03:22 queued 01:20
created
src/Workflow.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
 use InvalidArgumentException;
16 16
 use Plum\Plum\Converter\ConverterInterface;
17 17
 use Plum\Plum\Filter\FilterInterface;
18
+use Plum\Plum\Pipe\AbstractPipe;
18 19
 use Plum\Plum\Pipe\ConverterPipe;
19 20
 use Plum\Plum\Pipe\FilterPipe;
20
-use Plum\Plum\Pipe\AbstractPipe;
21 21
 use Plum\Plum\Pipe\WriterPipe;
22 22
 use Plum\Plum\Reader\ReaderInterface;
23 23
 use Plum\Plum\Writer\WriterInterface;
Please login to merge, or discard this patch.
src/Writer/WriterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,16 +25,19 @@
 block discarded – undo
25 25
      * Write the given item.
26 26
      *
27 27
      * @param mixed $item
28
+     * @return void
28 29
      */
29 30
     public function writeItem($item);
30 31
 
31 32
     /**
32 33
      * Prepare the writer.
34
+     * @return void
33 35
      */
34 36
     public function prepare();
35 37
 
36 38
     /**
37 39
      * Finish the writer.
40
+     * @return void
38 41
      */
39 42
     public function finish();
40 43
 }
Please login to merge, or discard this patch.