File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/symfony/console/Command
Upload
[..]
Command.php (23.49 KB)
Edit
Rename
Del
CompleteCommand.php (8.88 KB)
Edit
Rename
Del
DumpCompletionCommand.php (5.35 KB)
Edit
Rename
Del
HelpCommand.php (2.52 KB)
Edit
Rename
Del
InvokableCommand.php (8.37 KB)
Edit
Rename
Del
LazyCommand.php (5.59 KB)
Edit
Rename
Del
ListCommand.php (2.64 KB)
Edit
Rename
Del
LockableTrait.php (2.39 KB)
Edit
Rename
Del
SignalableCommandInterface.php (915 B)
Edit
Rename
Del
TraceableCommand.php (10.71 KB)
Edit
Rename
Del
Edit: SignalableCommandInterface.php
<?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\Command; /** * Interface for command reacting to signal. * * @author Grégoire Pineau <lyrixx@lyrix.info> */ interface SignalableCommandInterface { /** * Returns the list of signals to subscribe. * * @return list<\SIG*> * * @see https://php.net/pcntl.constants for signals */ public function getSubscribedSignals(): array; /** * The method will be called when the application is signaled. * * @return int|false The exit code to return or false to continue the normal execution */ public function handleSignal(int $signal, int|false $previousExitCode = 0): int|false; }
Simpan