Completed
Push — master ( c1d4a3...71015f )
by James Ekow Abaka
07:22
created
src/filesystem/FileInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -3,9 +3,20 @@
 block discarded – undo
3 3
 
4 4
 interface FileInterface
5 5
 {
6
+    /**
7
+     * @return void
8
+     */
6 9
     public function moveTo($destination);
7 10
     public function getSize();
11
+
12
+    /**
13
+     * @return void
14
+     */
8 15
     public function copyTo($destination);
16
+
17
+    /**
18
+     * @return void
19
+     */
9 20
     public function delete();
10 21
     public function getPath();
11 22
 }
12 23
\ No newline at end of file
Please login to merge, or discard this patch.
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/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
 class UploadedFile extends File {
9 9
 
Please login to merge, or discard this patch.
src/Input.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * http://stackoverflow.com/a/14432765
47 47
      * 
48
-     * @param type $input
49
-     * @param type $query
48
+     * @param string|null $key
50 49
      * @return type
51 50
      */
52 51
     private static function decode($method, $key) {
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
@@ -53,6 +53,11 @@  discard block
 block discarded – undo
53 53
     private $path;
54 54
     private static $registered = false;
55 55
 
56
+    /**
57
+     * @param boolean $read
58
+     * @param boolean $write
59
+     * @param integer $position
60
+     */
56 61
     private function setFlags($read, $write, $position)
57 62
     {
58 63
         $this->read = $read;
@@ -170,7 +175,7 @@  discard block
 block discarded – undo
170 175
      * Seek to new position
171 176
      * @param int $aOffset
172 177
      * @param int $aWhence
173
-     * @return boolean
178
+     * @return boolean|null
174 179
      */
175 180
     function stream_seek($aOffset, $aWhence) {
176 181
         switch ($aWhence) {
Please login to merge, or discard this patch.