Skip to content

Commit 6edcd99

Browse files
committed
run php-cs-fixer
1 parent 5dc3810 commit 6edcd99

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

system/Files/Exceptions/FileException.php

+2-6
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ class FileException extends RuntimeException implements ExceptionInterface
2020
use DebugTraceableTrait;
2121

2222
/**
23-
*
24-
* @param string|null $from
25-
* @param string|null $to
26-
* @param string|null $error
2723
* @return FileException
2824
*/
2925
public static function forUnableToMove(?string $from = null, ?string $to = null, ?string $error = null)
@@ -35,7 +31,7 @@ public static function forUnableToMove(?string $from = null, ?string $to = null,
3531
* Throws when an item is expected to be a directory but is not or is missing.
3632
*
3733
* @param string $caller The method causing the exception
38-
*
34+
*
3935
* @return FileException
4036
*/
4137
public static function forExpectedDirectory(string $caller)
@@ -47,7 +43,7 @@ public static function forExpectedDirectory(string $caller)
4743
* Throws when an item is expected to be a file but is not or is missing.
4844
*
4945
* @param string $caller The method causing the exception
50-
*
46+
*
5147
* @return FileException
5248
*/
5349
public static function forExpectedFile(string $caller)

system/Files/Exceptions/FileNotFoundException.php

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ class FileNotFoundException extends RuntimeException implements ExceptionInterfa
2020
use DebugTraceableTrait;
2121

2222
/**
23-
*
24-
* @param string $path
2523
* @return FileNotFoundException
2624
*/
2725
public static function forFileNotFound(string $path)

system/Files/File.php

-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ class File extends SplFileInfo
2525
{
2626
/**
2727
* The files size in bytes
28-
*
29-
* @var int
3028
*/
3129
protected int $size;
3230

0 commit comments

Comments
 (0)