Completed
Push — master ( 9b431d...997468 )
by recca
01:44
created
src/Filesystem.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      * appendStream.
37 37
      *
38
-     * @param string|resource $output
38
+     * @param string $output
39 39
      * @param string|resource $input
40 40
      * @param int             $offset
41 41
      */
Please login to merge, or discard this patch.
src/Receiver.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@  discard block
 block discarded – undo
53 53
      * receive.
54 54
      *
55 55
      * @param string  $inputName
56
-     * @param Closure $closure
57 56
      * @return \Symfony\Component\HttpFoundation\Response
58 57
      */
59 58
     public function receive($inputName = 'file', Closure $callback = null)
@@ -103,7 +102,7 @@  discard block
 block discarded – undo
103 102
      *
104 103
      * @param array  $config
105 104
      * @param string $class
106
-     * @return \Recca0120\Upload\Contracts\Api
105
+     * @return Receiver
107 106
      */
108 107
     public static function factory($config = [], $class = FileAPI::class)
109 108
     {
Please login to merge, or discard this patch.
src/UploadManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @param \Illuminate\Contracts\Foundation\Application $app
30 30
      * @param \Illuminate\Http\Request $request
31
-     * @param \Recca0120\Upload\Filesyste $filesystem
31
+     * @param Filesystem $filesystem
32 32
      */
33 33
     public function __construct($app, Request $request = null, Filesystem $filesystem = null)
34 34
     {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * create fileapi driver.
52 52
      *
53
-     * @return \Recca0120\Upload\Apis\FileAPI
53
+     * @return Receiver
54 54
      */
55 55
     protected function createFileapiDriver()
56 56
     {
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * create fileapi driver.
62 62
      *
63
-     * @return \Recca0120\Upload\Apis\Plupload
63
+     * @return Receiver
64 64
      */
65 65
     protected function createPluploadDriver()
66 66
     {
Please login to merge, or discard this patch.