Phalcon\Build\Generator::__construct PHP Method

__construct() public method

public __construct ( string $rootDir, string $buildDir )
$rootDir string
$buildDir string
    public function __construct($rootDir, $buildDir)
    {
        $this->rootDir = $rootDir;
        $this->safeDir = $buildDir . '/safe';
        $this->optimized32Dir = $buildDir . '/32bits';
        $this->optimized64Dir = $buildDir . '/64bits';
    }