opt
/
cpanel
/
ea-wappspector
/
vendor
/
slevomat
/
coding-standard
/
SlevomatCodingStandard
/
Helpers
➕ New
📤 Upload
✎ Editing:
EmptyFileException.php
← Back
<?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
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel