/**
  * {@inheritdoc}
  */
 public function offsetGet($offset)
 {
     if (!$this->isValidKeyType($offset)) {
         return null;
     }
     return parent::offsetGet($this->convertKeyToHash($offset));
 }