Akeneo\Component\SpreadsheetParser\Xlsx\Spreadsheet::getRelationships PHP Method

getRelationships() protected method

protected getRelationships ( ) : Relationships
return Relationships
    protected function getRelationships()
    {
        if (!$this->relationships) {
            $path = $this->archive->extract(static::RELATIONSHIPS_PATH);
            $this->relationships = $this->relationshipsLoader->open($path);
        }
        return $this->relationships;
    }