Exakat\Loader\CypherG3::__construct PHP Метод

__construct() публичный Метод

public __construct ( )
    public function __construct()
    {
        $this->config = Config::factory();
        // Force autoload
        $this->cypher = new Cypher($this->config);
        if (file_exists($this->config->projects_root . '/projects/.exakat/nodes.cypher.csv') && static::$file_saved == 0) {
            $this->cleanCsv();
        }
        $node = array('inited' => true);
        $this->node =& $node;
    }