REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 1.12 KB
Close
//proc/thread-self/root/home/getspomw/itechservicellc.com/vendor/symfony/console/Event/ConsoleAlarmEvent.php
Text
Base64
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Console\Event; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; final class ConsoleAlarmEvent extends ConsoleEvent { public function __construct( Command $command, InputInterface $input, OutputInterface $output, private int|false $exitCode = 0, ) { parent::__construct($command, $input, $output); } public function setExitCode(int $exitCode): void { if ($exitCode < 0 || $exitCode > 255) { throw new \InvalidArgumentException('Exit code must be between 0 and 255.'); } $this->exitCode = $exitCode; } public function abortExit(): void { $this->exitCode = false; } public function getExitCode(): int|false { return $this->exitCode; } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 6
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
ConsoleAlarmEvent.php
1.12 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConsoleCommandEvent.php
1.29 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConsoleErrorEvent.php
1.43 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConsoleEvent.php
1.19 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConsoleSignalEvent.php
1.31 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ConsoleTerminateEvent.php
1.22 KB
lrw-r--r--
2025-10-28 20:23:34
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).