Completed
Branch master (ae6724)
by Joseph
12:39
created
src/Drivers/AbstractAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
     abstract function getQuota();
181 181
 
182 182
     /**
183
-     * @param $user
183
+     * @param \SocialiteProviders\Manager\OAuth2\User $user
184 184
      *
185 185
      * @return array
186 186
      */
Please login to merge, or discard this patch.
src/Drivers/Google/Adapter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,9 +124,9 @@
 block discarded – undo
124 124
     }
125 125
 
126 126
     /**
127
-     * @param $path
127
+     * @param string $path
128 128
      *
129
-     * @return mixed
129
+     * @return string
130 130
      */
131 131
     protected function getFolderIdForPath( $path )
132 132
     {
Please login to merge, or discard this patch.
src/Models/CloudStorage.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-     * @param null $reason
147
+     * @param string $reason
148 148
      *
149 149
      * @return $this
150 150
      */
@@ -239,10 +239,10 @@  discard block
 block discarded – undo
239 239
     }
240 240
 
241 241
     /**
242
-     * @param      $sourcePath
243
-     * @param      $destinationPath
242
+     * @param      string $sourcePath
243
+     * @param      string $destinationPath
244 244
      * @param bool $shouldQueue
245
-     * @param null $queueJob
245
+     * @param UploadFile $queueJob
246 246
      *
247 247
      * @return bool
248 248
      * @throws StorageUnavailableException
Please login to merge, or discard this patch.
src/Models/CustomManagedCloudStorage.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
     protected $saveCallback;
17 17
 
18 18
     /**
19
-     * @param $driver
20
-     * @param $saveCallback
19
+     * @param string $driver
20
+     * @param callable $saveCallback
21 21
      *
22 22
      * @return CustomManagedCloudStorage
23 23
      */
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param array|string $attributes
36
-     * @param $saveCallback
36
+     * @param callable $saveCallback
37 37
      *
38 38
      * @return $this|CloudStorage
39 39
      */
Please login to merge, or discard this patch.
src/StorageConnectManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     }
136 136
 
137 137
     /**
138
-     * @param $driver
138
+     * @param string $driver
139 139
      *
140 140
      * @return mixed
141 141
      */
Please login to merge, or discard this patch.
src/Subscribers/LogsActivity.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,8 @@  discard block
 block discarded – undo
55 55
     }
56 56
 
57 57
     /**
58
-     * @param $message
59
-     * @param $storage
58
+     * @param string $message
59
+     * @param \STS\StorageConnect\Models\CloudStorage $storage
60 60
      * @param array $context
61 61
      */
62 62
     protected function info($message, $storage, array $context = [])
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
 
67 67
     /**
68 68
      * @param $message
69
-     * @param $storage
69
+     * @param \STS\StorageConnect\Models\CloudStorage $storage
70 70
      * @param array $context
71 71
      */
72 72
     protected function warning($message, $storage, array $context = [])
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @param $message
79
-     * @param $storage
79
+     * @param \STS\StorageConnect\Models\CloudStorage $storage
80 80
      * @param array $context
81 81
      */
82 82
     protected function error($message, $storage, array $context = [])
Please login to merge, or discard this patch.