/
home
/
henzagold
/
server
/
vendor
/
phpro
/
soap-client
/
src
/
Phpro
/
SoapClient
/
Console
/
File Upload :
llllll
Current File: /home/henzagold/server/vendor/phpro/soap-client/src/Phpro/SoapClient/Console/Application.php
<?php namespace Phpro\SoapClient\Console; use Phpro\SoapClient\Console\Command; use Phpro\SoapClient\Console\Event\Subscriber\LaminasCodeValidationSubscriber; use Phpro\SoapClient\Console\Helper\ConfigHelper; use Phpro\SoapClient\Util\Filesystem; use Symfony\Component\Console\Application as SymfonyApplication; use Symfony\Component\Console\Helper\HelperSet; use Symfony\Component\EventDispatcher\EventDispatcher; use Symfony\Component\EventDispatcher\EventDispatcherInterface; /** * Class Application * * @package Phpro\SoapClient\Console */ class Application extends SymfonyApplication { const APP_NAME = 'SoapClient'; const APP_VERSION = '0.1.0'; /** * Set up application: */ public function __construct() { $this->setDispatcher($this->createEventDispatcher()); parent::__construct(self::APP_NAME, self::APP_VERSION); } /** * {@inheritdoc} */ protected function getDefaultCommands(): array { $filesystem = new Filesystem(); $commands = parent::getDefaultCommands(); $commands[] = new Command\GenerateTypesCommand($filesystem); $commands[] = new Command\GenerateClassmapCommand($filesystem); $commands[] = new Command\GenerateClientCommand($filesystem); $commands[] = new Command\GenerateConfigCommand($filesystem); $commands[] = new Command\GenerateClientFactoryCommand($filesystem); $commands[] = new Command\WizardCommand(); return $commands; } protected function getDefaultHelperSet(): HelperSet { $set = parent::getDefaultHelperSet(); $set->set(new ConfigHelper(new Filesystem())); return $set; } private function createEventDispatcher(): EventDispatcherInterface { $dispatcher = new EventDispatcher(); $dispatcher->addSubscriber(new LaminasCodeValidationSubscriber()); return $dispatcher; } }
Copyright ©2k19 -
Hexid
|
Tex7ure