JonathanTorres\Construct\Commands\InteractiveCommand::__construct PHP Method

__construct() public method

Initialize.
public __construct ( Construct $construct, Str $str ) : void
$construct JonathanTorres\Construct\Construct
$str JonathanTorres\Construct\Helpers\Str
return void
    public function __construct(Construct $construct, Str $str)
    {
        $this->construct = $construct;
        $this->str = $str;
        $this->defaults = new Defaults();
        $this->systemPhpVersion = PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION;
        parent::__construct();
    }