Completed
Pull Request — master (#21)
by Florian
03:30 queued 01:13
created
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.
src/Converter/NumberFormatConverter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     /**
54 54
      * @param mixed $item
55 55
      *
56
-     * @return mixed
56
+     * @return string
57 57
      */
58 58
     public function convert($item)
59 59
     {
Please login to merge, or discard this patch.