Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
laminas
/
laminas-httphandlerrunner
/
src
/
Exception
/
File Content:
EmitterException.php
<?php declare (strict_types=1); namespace PleskGrafana\Laminas\HttpHandlerRunner\Exception; use RuntimeException; use function sprintf; class EmitterException extends RuntimeException implements ExceptionInterface { public static function forHeadersSent(string $filename, int $line) : self { return new self(sprintf('Unable to emit response; headers already sent in %s:%d', $filename, $line)); } public static function forOutputSent() : self { return new self('Output has been emitted previously; cannot emit response'); } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
EmitterException.php
567 bytes
0644
ExceptionInterface.php
179 bytes
0644
InvalidEmitterException.php
640 bytes
0644
N4ST4R_ID | Naxtarrr