changes for filter and print

This commit is contained in:
2024-09-29 16:59:27 +05:45
parent 497f567cba
commit 684e01bf48
1335 changed files with 38709 additions and 74987 deletions

View File

@ -12,12 +12,11 @@ use ZipStream\Exception;
class FileNotReadableException extends Exception
{
/**
* Constructor of the Exception
*
* @param String $path - The path which wasn't found
* @internal
*/
public function __construct(string $path)
{
public function __construct(
public readonly string $path
) {
parent::__construct("The file with the path $path isn't readable.");
}
}