SensioLabs\Deptrac\OutputFormatter\OutputFormatterOption::__construct PHP Метод

__construct() приватный Метод

private __construct ( string $name, integer $mode = null, string $description = '', mixed $default = null )
$name string The argument name
$mode integer The argument mode: self::REQUIRED or self::OPTIONAL
$description string A description text
$default mixed The default value (for self::OPTIONAL mode only)
    private function __construct($name, $mode = null, $description = '', $default = null)
    {
        $this->name = $name;
        $this->mode = $mode;
        $this->description = $description;
        $this->default = $default;
    }