<?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. */namespaceSymfony\Component\Console\Event;useSymfony\Component\Console\Command\Command;useSymfony\Component\Console\Input\InputInterface;useSymfony\Component\Console\Output\OutputInterface;/** * @author marie <marie@users.noreply.github.com> */finalclassConsoleSignalEventextendsConsoleEvent{private$handlingSignal;publicfunction__construct(Command$command,InputInterface$input,OutputInterface$output,int$handlingSignal){parent::__construct($command,$input,$output);$this->handlingSignal=$handlingSignal;}publicfunctiongetHandlingSignal():int{return$this->handlingSignal;}}