Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ConsoleTerminateEvent.php
01 <?php
02
03 /*
04 * This file is part of the Symfony package.
05 *
06 * (c) Fabien Potencier <fabien@symfony.com>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\Console\Event;
13
14 use Symfony\Component\Console\Command\Command;
15 use Symfony\Component\Console\Input\InputInterface;
16 use Symfony\Component\Console\Output\OutputInterface;
17
18 /**
19 * Allows to manipulate the exit code of a command after its execution.
20 *
21 * @author Francesco Levorato <git@flevour.net>
22 */
23 class ConsoleTerminateEvent extends ConsoleEvent
24 {
25 /**
26 * The exit code of the command.
27 *
28 * @var int
29 */
30 private $exitCode;
31
32 public function __construct(Command $command, InputInterface $input, OutputInterface $output, $exitCode)
33 {
34 parent::__construct($command, $input, $output);
35
36 $this->setExitCode($exitCode);
37 }
38
39 /**
40 * Sets the exit code.
41 *
42 * @param int $exitCode The command exit code
43 */
44 public function setExitCode($exitCode)
45 {
46 $this->exitCode = (int) $exitCode;
47 }
48
49 /**
50 * Gets the exit code.
51 *
52 * @return int The command exit code
53 */
54 public function getExitCode()
55 {
56 return $this->exitCode;
57 }
58 }
59