You are here

interface InputAwareInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Input/InputAwareInterface.php \Symfony\Component\Console\Input\InputAwareInterface

InputAwareInterface should be implemented by classes that depends on the Console Input.

@author Wouter J <waldio.webdesign@gmail.com>

Hierarchy

Expanded class hierarchy of InputAwareInterface

All classes that implement InputAwareInterface

2 files declare their use of InputAwareInterface
Application.php in vendor/symfony/console/Application.php
InputAwareHelper.php in vendor/symfony/console/Helper/InputAwareHelper.php

File

vendor/symfony/console/Input/InputAwareInterface.php, line 20

Namespace

Symfony\Component\Console\Input
View source
interface InputAwareInterface {

  /**
   * Sets the Console Input.
   *
   * @param InputInterface
   */
  public function setInput(InputInterface $input);

}

Members

Namesort descending Modifiers Type Description Overrides
InputAwareInterface::setInput public function Sets the Console Input. 1