Passed
Push — master ( 8d7c1d...403b82 )
by Richard
09:13 queued 07:02
created
src/FixedFDirectory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * Only regard contents that match the predicate.
61 61
      * 
62 62
      * @param   \Closure    $predicate  File|Directory -> bool
63
-     * @return  Directory
63
+     * @return  GenericFixedFDirectory
64 64
      */
65 65
     public function filter(\Closure $predicate) {
66 66
         return new GenericFixedFDirectory(
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * Map over the contents of this directory.
73 73
      *
74 74
      * @param   \Closure    $trans
75
-     * @return  Directory
75
+     * @return  GenericFixedFDirectory
76 76
      */
77 77
     public function map(\Closure $trans) {
78 78
         return new GenericFixedFDirectory(
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * Map the contents this directory.
85 85
      *
86 86
      * @param   \Closure    $trans
87
-     * @return  Directory
87
+     * @return  GenericFixedFDirectory
88 88
      */
89 89
     public function outer_map(\Closure $trans) {
90 90
         return new GenericFixedFDirectory(
Please login to merge, or discard this patch.
src/VirtualFSObject.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     }
23 23
 
24 24
     /**
25
-     * @return string
25
+     * @return \LogicException
26 26
      */
27 27
     public function mimetype() {
28 28
         return new \LogicException("Don't use mimetype on VirtualFSObjects.");
Please login to merge, or discard this patch.