Cilex\Provider\Console\ContainerAwareApplication::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $name = 'UNKNOWN', string $version = 'UNKNOWN' )
$name string The name of the application
$version string The version of the application
    public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')
    {
        parent::__construct($name, $version);
    }

Usage Example

 public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN')
 {
     parent::__construct('gfc', 1.0);
 }
All Usage Examples Of Cilex\Provider\Console\ContainerAwareApplication::__construct