📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 20:47:14
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
slevomat
/
coding-standard
/
SlevomatCodingStandard
/
Helpers
✏️
Editing: EmptyFileException.php
<?php declare(strict_types = 1); namespace SlevomatCodingStandard\Helpers; use Exception; use Throwable; use function sprintf; /** * @internal */ class EmptyFileException extends Exception { private string $filename; public function __construct(string $filename, ?Throwable $previous = null) { parent::__construct(sprintf( 'File %s is empty', $filename, ), 0, $previous); $this->filename = $filename; } public function getFilename(): string { return $this->filename; } }
💾 Save Changes
❌ Cancel