Zephir\CompilerFile::__construct PHP Method

__construct() public method

CompilerFile constructor
public __construct ( string $className, string $filePath, zephir\Config $config, zephir\Logger $logger )
$className string
$filePath string
$config zephir\Config
$logger zephir\Logger
    public function __construct($className, $filePath, Config $config, Logger $logger)
    {
        $this->_className = $className;
        $this->_filePath = $filePath;
        $this->_headerCBlocks = array();
        $this->_config = $config;
        $this->_logger = $logger;
        $this->_aliasManager = new AliasManager();
    }