registry[$entityType]['sequence'] = $sequence; $this->registry[$entityType]['sequenceTable'] = $sequenceTable; } /** * Returns sequence information * * @param string $entityType * @return bool|array */ public function retrieve($entityType) { if (isset($this->registry[$entityType])) { return $this->registry[$entityType]; } return false; } }