splitJoinedKey() protected method

Example: Let the key name is "meta_key" and the input is "some-key#1234", then the output is array('meta_key' => 'some-key', 'vp_id' => '1234').
protected splitJoinedKey ( $key ) : array
$key
return array
Esempio n. 1
0
 protected function splitJoinedKey($key)
 {
     $splitKey = parent::splitJoinedKey($key);
     $splitKey[$this->keyName] = $this->maybeReplacePlaceholderWithPrefix($splitKey[$this->keyName]);
     return $splitKey;
 }