Completed
Pull Request — master (#94)
by Tim
05:44
created
src/Adapter/LeagueFilesystemAdapter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      *
83 83
      * @param string $filename Path to the file
84 84
      *
85
-     * @return TRUE if the filename exists and is a directory, else FALSE
85
+     * @return boolean if the filename exists and is a directory, else FALSE
86 86
      */
87 87
     public function isDir($filename)
88 88
     {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      * @param string $filename The name of the file to write the data to
121 121
      * @param string $data     The data to write to the file
122 122
      *
123
-     * @return number The number of bytes written to the file
123
+     * @return boolean The number of bytes written to the file
124 124
      */
125 125
     public function write($filename, $data)
126 126
     {
Please login to merge, or discard this patch.
src/Adapter/PhpFilesystemAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      *
65 65
      * @param string $filename Path to the file
66 66
      *
67
-     * @return TRUE if the filename exists and is a directory, else FALSE
67
+     * @return boolean if the filename exists and is a directory, else FALSE
68 68
      * @link http://php.net/is_dir
69 69
      */
70 70
     public function isDir($filename)
Please login to merge, or discard this patch.