Akeneo\Component\SpreadsheetParser\Xlsx\Relationships::storeRelationShipByType PHP Method

storeRelationShipByType() private method

stores the relationShip into the right variable
private storeRelationShipByType ( string $type, string $id, string $target )
$type string
$id string
$target string
    private function storeRelationShipByType($type, $id, $target)
    {
        switch ($type) {
            case 'worksheet':
                $this->workSheetPaths[$id] = $target;
                break;
            case 'styles':
                $this->stylePath = $target;
                break;
            case 'sharedStrings':
                $this->sharedStringPath = $target;
                break;
        }
    }