registry[$entityType][$identifier] = $entity; } /** * Retrieve entity from storage * * @param string $entityType * @param string $identifier * @return null|object */ public function retrieve($entityType, $identifier) { if (isset($this->registry[$entityType][$identifier])) { return $this->registry[$entityType][$identifier]; } else { return null; } } /** * Remove entity from registry * * @param string $entityType * @param string $identifier * @return bool */ public function remove($entityType, $identifier) { if (isset($this->registry[$entityType][$identifier])) { unset($this->registry[$entityType][$identifier]); } return true; } }