Beispiel #1
0
 /**
  * @return array
  */
 public function report()
 {
     if ($this->_storage instanceof RWMutexAwareInterface) {
         $this->_storage->RLock();
     }
     $data = $this->_storage->report();
     if ($this->_storage instanceof RWMutexAwareInterface) {
         $this->_storage->RUnlock();
     }
     return $data;
 }