ListCommand.php in Devel 8.3
File
webprofiler/src/ProxyClass/Command/ListCommand.php
View source
<?php
namespace Drupal\webprofiler\ProxyClass\Command;
class ListCommand {
use \Drupal\Core\DependencyInjection\DependencySerializationTrait;
protected $drupalProxyOriginalServiceId;
protected $service;
protected $container;
public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id) {
$this->container = $container;
$this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
}
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}
public function showMessage($output, $message, $type = 'info') {
return $this
->lazyLoadItself()
->showMessage($output, $message, $type);
}
public function ignoreValidationErrors() {
return $this
->lazyLoadItself()
->ignoreValidationErrors();
}
public function setApplication(\Symfony\Component\Console\Application $application = NULL) {
return $this
->lazyLoadItself()
->setApplication($application);
}
public function setHelperSet(\Symfony\Component\Console\Helper\HelperSet $helperSet) {
return $this
->lazyLoadItself()
->setHelperSet($helperSet);
}
public function getHelperSet() {
return $this
->lazyLoadItself()
->getHelperSet();
}
public function getApplication() {
return $this
->lazyLoadItself()
->getApplication();
}
public function isEnabled() {
return $this
->lazyLoadItself()
->isEnabled();
}
public function run(\Symfony\Component\Console\Input\InputInterface $input, \Symfony\Component\Console\Output\OutputInterface $output) {
return $this
->lazyLoadItself()
->run($input, $output);
}
public function setCode(callable $code) {
return $this
->lazyLoadItself()
->setCode($code);
}
public function mergeApplicationDefinition($mergeArgs = TRUE) {
return $this
->lazyLoadItself()
->mergeApplicationDefinition($mergeArgs);
}
public function setDefinition($definition) {
return $this
->lazyLoadItself()
->setDefinition($definition);
}
public function getDefinition() {
return $this
->lazyLoadItself()
->getDefinition();
}
public function getNativeDefinition() {
return $this
->lazyLoadItself()
->getNativeDefinition();
}
public function addArgument($name, $mode = NULL, $description = '', $default = NULL) {
return $this
->lazyLoadItself()
->addArgument($name, $mode, $description, $default);
}
public function addOption($name, $shortcut = NULL, $mode = NULL, $description = '', $default = NULL) {
return $this
->lazyLoadItself()
->addOption($name, $shortcut, $mode, $description, $default);
}
public function setName($name) {
return $this
->lazyLoadItself()
->setName($name);
}
public function setProcessTitle($title) {
return $this
->lazyLoadItself()
->setProcessTitle($title);
}
public function getName() {
return $this
->lazyLoadItself()
->getName();
}
public function setHidden($hidden) {
return $this
->lazyLoadItself()
->setHidden($hidden);
}
public function isHidden() {
return $this
->lazyLoadItself()
->isHidden();
}
public function setDescription($description) {
return $this
->lazyLoadItself()
->setDescription($description);
}
public function getDescription() {
return $this
->lazyLoadItself()
->getDescription();
}
public function setHelp($help) {
return $this
->lazyLoadItself()
->setHelp($help);
}
public function getHelp() {
return $this
->lazyLoadItself()
->getHelp();
}
public function getProcessedHelp() {
return $this
->lazyLoadItself()
->getProcessedHelp();
}
public function setAliases($aliases) {
return $this
->lazyLoadItself()
->setAliases($aliases);
}
public function getAliases() {
return $this
->lazyLoadItself()
->getAliases();
}
public function getSynopsis($short = FALSE) {
return $this
->lazyLoadItself()
->getSynopsis($short);
}
public function addUsage($usage) {
return $this
->lazyLoadItself()
->addUsage($usage);
}
public function getUsages() {
return $this
->lazyLoadItself()
->getUsages();
}
public function getHelper($name) {
return $this
->lazyLoadItself()
->getHelper($name);
}
public function setContainer($container) {
return $this
->lazyLoadItself()
->setContainer($container);
}
public function has($key) {
return $this
->lazyLoadItself()
->has($key);
}
public function get($key) {
return $this
->lazyLoadItself()
->get($key);
}
public function setTranslator($translator) {
return $this
->lazyLoadItself()
->setTranslator($translator);
}
public function trans($key) {
return $this
->lazyLoadItself()
->trans($key);
}
}