Skip to content

Commit 0a5868e

Browse files
committed
Fix CS
1 parent f85180d commit 0a5868e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

File/UploadedFile.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,11 @@ private static function parseFilesize(string $size)
253253

254254
switch (substr($size, -1)) {
255255
case 't': $max *= 1024;
256-
// no break
256+
// no break
257257
case 'g': $max *= 1024;
258-
// no break
258+
// no break
259259
case 'm': $max *= 1024;
260-
// no break
260+
// no break
261261
case 'k': $max *= 1024;
262262
}
263263

ParameterBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct(array $parameters = [])
3939
*
4040
* @return array
4141
*/
42-
public function all(/*string $key = null*/)
42+
public function all(/* string $key = null */)
4343
{
4444
$key = \func_num_args() > 0 ? func_get_arg(0) : null;
4545

0 commit comments

Comments
 (0)