예제 #1
0
파일: Counter.php 프로젝트: rilinor/counter
 /**
  * @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;
 }