We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f85180d commit 0a5868eCopy full SHA for 0a5868e
File/UploadedFile.php
@@ -253,11 +253,11 @@ private static function parseFilesize(string $size)
253
254
switch (substr($size, -1)) {
255
case 't': $max *= 1024;
256
- // no break
+ // no break
257
case 'g': $max *= 1024;
258
259
case 'm': $max *= 1024;
260
261
case 'k': $max *= 1024;
262
}
263
ParameterBag.php
@@ -39,7 +39,7 @@ public function __construct(array $parameters = [])
39
*
40
* @return array
41
*/
42
- public function all(/*string $key = null*/)
+ public function all(/* string $key = null */)
43
{
44
$key = \func_num_args() > 0 ? func_get_arg(0) : null;
45
0 commit comments