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

__construct() public method

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