Completed
Push — master ( c3c87a...5edf8c )
by Andrey
07:12
created
web/ckfinder/core/connector/php/vendor/spatie/dropbox-api/src/Client.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -244,7 +244,7 @@
 block discarded – undo
244 244
      *
245 245
      * @param string $path
246 246
      * @param string|resource $contents
247
-     * @param string|array $mode
247
+     * @param string $mode
248 248
      *
249 249
      * @return array
250 250
      */
Please login to merge, or discard this patch.
core/connector/php/vendor/spatie/flysystem-dropbox/src/DropboxAdapter.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -241,6 +241,7 @@
 block discarded – undo
241 241
 
242 242
     /**
243 243
      * {@inheritdoc}
244
+     * @param string $path
244 245
      */
245 246
     public function applyPathPrefix($path): string
246 247
     {
Please login to merge, or discard this patch.
web/ckfinder/core/connector/php/vendor/symfony/debug/ErrorHandler.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * Registers the error handler.
117 117
      *
118
-     * @param self|null|int $handler The handler to register, or @deprecated (since version 2.6, to be removed in 3.0) bit field of thrown levels
118
+     * @param ErrorHandler $handler The handler to register, or @deprecated (since version 2.6, to be removed in 3.0) bit field of thrown levels
119 119
      * @param bool          $replace Whether to replace or not any existing handler
120 120
      *
121 121
      * @return self The registered error handler
@@ -355,6 +355,7 @@  discard block
 block discarded – undo
355 355
 
356 356
     /**
357 357
      * Re-registers as a PHP error handler if levels changed.
358
+     * @param integer $prev
358 359
      */
359 360
     private function reRegister($prev)
360 361
     {
Please login to merge, or discard this patch.
core/connector/php/vendor/symfony/debug/Exception/FlattenException.php 1 patch
Doc Comments   +16 added lines patch added patch discarded remove patch
@@ -145,6 +145,9 @@  discard block
 block discarded – undo
145 145
         return $this->class;
146 146
     }
147 147
 
148
+    /**
149
+     * @param string $class
150
+     */
148 151
     public function setClass($class)
149 152
     {
150 153
         $this->class = $class;
@@ -155,6 +158,9 @@  discard block
 block discarded – undo
155 158
         return $this->file;
156 159
     }
157 160
 
161
+    /**
162
+     * @param string $file
163
+     */
158 164
     public function setFile($file)
159 165
     {
160 166
         $this->file = $file;
@@ -165,6 +171,9 @@  discard block
 block discarded – undo
165 171
         return $this->line;
166 172
     }
167 173
 
174
+    /**
175
+     * @param integer $line
176
+     */
168 177
     public function setLine($line)
169 178
     {
170 179
         $this->line = $line;
@@ -175,6 +184,9 @@  discard block
 block discarded – undo
175 184
         return $this->message;
176 185
     }
177 186
 
187
+    /**
188
+     * @param string $message
189
+     */
178 190
     public function setMessage($message)
179 191
     {
180 192
         $this->message = $message;
@@ -221,6 +233,10 @@  discard block
 block discarded – undo
221 233
         $this->setTrace($exception->getTrace(), $exception->getFile(), $exception->getLine());
222 234
     }
223 235
 
236
+    /**
237
+     * @param string $file
238
+     * @param integer $line
239
+     */
224 240
     public function setTrace($trace, $file, $line)
225 241
     {
226 242
         $this->trace = array();
Please login to merge, or discard this patch.
web/ckfinder/core/connector/php/vendor/symfony/debug/ExceptionHandler.php 1 patch
Doc Comments   +11 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,6 +36,10 @@  discard block
 block discarded – undo
36 36
     private $caughtLength;
37 37
     private $fileLinkFormat;
38 38
 
39
+    /**
40
+     * @param string $charset
41
+     * @param string $fileLinkFormat
42
+     */
39 43
     public function __construct($debug = true, $charset = null, $fileLinkFormat = null)
40 44
     {
41 45
         if (false !== strpos($charset, '%')) {
@@ -180,7 +184,7 @@  discard block
 block discarded – undo
180 184
      * This method uses plain PHP functions like header() and echo to output
181 185
      * the response.
182 186
      *
183
-     * @param \Exception|FlattenException $exception An \Exception or FlattenException instance
187
+     * @param \Exception $exception An \Exception or FlattenException instance
184 188
      */
185 189
     public function sendPhpResponse($exception)
186 190
     {
@@ -202,7 +206,7 @@  discard block
 block discarded – undo
202 206
     /**
203 207
      * Creates the error Response associated with the given Exception.
204 208
      *
205
-     * @param \Exception|FlattenException $exception An \Exception or FlattenException instance
209
+     * @param \Exception $exception An \Exception or FlattenException instance
206 210
      *
207 211
      * @return Response A Response instance
208 212
      *
@@ -222,7 +226,7 @@  discard block
 block discarded – undo
222 226
     /**
223 227
      * Gets the full HTML content associated with the given exception.
224 228
      *
225
-     * @param \Exception|FlattenException $exception An \Exception or FlattenException instance
229
+     * @param FlattenException $exception An \Exception or FlattenException instance
226 230
      *
227 231
      * @return string The HTML content as a string
228 232
      */
@@ -369,6 +373,10 @@  discard block
 block discarded – undo
369 373
 EOF;
370 374
     }
371 375
 
376
+    /**
377
+     * @param string $content
378
+     * @param string $css
379
+     */
372 380
     private function decorate($content, $css)
373 381
     {
374 382
         return <<<EOF
Please login to merge, or discard this patch.
web/ckfinder/core/connector/php/vendor/symfony/http-foundation/Cookie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      *
32 32
      * @param string                                  $name     The name of the cookie
33 33
      * @param string                                  $value    The value of the cookie
34
-     * @param int|string|\DateTime|\DateTimeInterface $expire   The time the cookie expires
34
+     * @param integer $expire   The time the cookie expires
35 35
      * @param string                                  $path     The path on the server in which the cookie will be available on
36 36
      * @param string                                  $domain   The domain that the cookie is available to
37 37
      * @param bool                                    $secure   Whether the cookie should only be transmitted over a secure HTTPS connection from the client
Please login to merge, or discard this patch.
ckfinder/core/connector/php/vendor/symfony/http-foundation/File/File.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -103,6 +103,10 @@
 block discarded – undo
103 103
         return $target;
104 104
     }
105 105
 
106
+    /**
107
+     * @param string $directory
108
+     * @param string $name
109
+     */
106 110
     protected function getTargetFile($directory, $name = null)
107 111
     {
108 112
         if (!is_dir($directory)) {
Please login to merge, or discard this patch.
ckfinder/core/connector/php/vendor/symfony/http-foundation/HeaderBag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      * Returns a header value by name.
105 105
      *
106 106
      * @param string $key     The header name
107
-     * @param mixed  $default The default value
107
+     * @param string|null  $default The default value
108 108
      * @param bool   $first   Whether to return the first value or all header values
109 109
      *
110 110
      * @return string|array The first header value if $first is true, an array of values otherwise
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
      * Adds a custom Cache-Control directive.
221 221
      *
222 222
      * @param string $key   The Cache-Control directive name
223
-     * @param mixed  $value The Cache-Control directive value
223
+     * @param integer  $value The Cache-Control directive value
224 224
      */
225 225
     public function addCacheControlDirective($key, $value = true)
226 226
     {
Please login to merge, or discard this patch.
web/ckfinder/core/connector/php/vendor/symfony/http-foundation/IpUtils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * Checks if an IPv4 or IPv6 address is contained in the list of given IPs or subnets.
32 32
      *
33 33
      * @param string       $requestIp IP to check
34
-     * @param string|array $ips       List of IPs or subnets (can be a string if only a single one)
34
+     * @param string[] $ips       List of IPs or subnets (can be a string if only a single one)
35 35
      *
36 36
      * @return bool Whether the IP is valid
37 37
      */
Please login to merge, or discard this patch.