Beispiel #1
0
 /**
  * @param $key
  * @internal Only for use in Repositories and indexer
  * @return mixed
  */
 public function _getPropertyRaw($key)
 {
     return parent::getProperty($key);
 }
Beispiel #2
0
 /**
  * Returns a property value
  *
  * @param string $key
  * @return mixed Property value
  */
 public function getProperty($key)
 {
     if ($this->indexed === NULL) {
         $this->loadIndexRecord();
     }
     return parent::getProperty($key);
 }