JonathanTorres\Construct\Commands\ConstructCommand::__construct PHP 메소드

__construct() 공개 메소드

Initialize.
public __construct ( Construct $construct, Str $str, Filesystem $filesystem ) : void
$construct JonathanTorres\Construct\Construct
$str JonathanTorres\Construct\Helpers\Str
$filesystem JonathanTorres\Construct\Helpers\Filesystem
리턴 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();
    }