Completed
Push — dev ( 8d8070...2b9e9e )
by James Ekow Abaka
01:14
created
src/validator/Validation.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
      *
17 17
      * @param boolean $result
18 18
      * @param string $message
19
-     * @param array $options
20 19
      * @return boolean
21 20
      */
22 21
     protected function evaluateResult($field, $result, $message)
Please login to merge, or discard this patch.
src/StringStream.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,6 +47,11 @@  discard block
 block discarded – undo
47 47
     private $path;
48 48
     private static $registered = false;
49 49
 
50
+    /**
51
+     * @param boolean $read
52
+     * @param boolean $write
53
+     * @param integer $position
54
+     */
50 55
     private function setFlags($read, $write, $position)
51 56
     {
52 57
         $this->read = $read;
@@ -154,7 +159,7 @@  discard block
 block discarded – undo
154 159
      * Seek to new position
155 160
      * @param int $aOffset
156 161
      * @param int $aWhence
157
-     * @return boolean
162
+     * @return boolean|null
158 163
      */
159 164
     public function stream_seek($aOffset, $aWhence)
160 165
     {
Please login to merge, or discard this patch.
src/filesystem/UploadedFile.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace ntentan\utils\filesystem;
4 4
 
5
-use ntentan\utils\exceptions\FilesystemException;
6 5
 use ntentan\utils\Filesystem;
6
+use ntentan\utils\exceptions\FilesystemException;
7 7
 
8 8
 /**
9 9
  * Class UploadedFile
Please login to merge, or discard this patch.