コード例 #1
0
ファイル: XhprofAdapter.php プロジェクト: link0/profiler
 /**
  * Stops the profiling and triggers an event with the result data
  *
  * @return array $data
  */
 public function stop()
 {
     parent::stop();
     return xhprof_disable();
 }
コード例 #2
0
ファイル: NullAdapter.php プロジェクト: link0/profiler
 /**
  * Stops the profiling and triggers an event with the result data
  *
  * @return array $data
  */
 public function stop()
 {
     parent::stop();
     return array();
 }
コード例 #3
0
ファイル: UprofilerAdapter.php プロジェクト: link0/profiler
 /**
  * @return array $data
  */
 public function stop()
 {
     parent::stop();
     return uprofiler_disable();
 }