コード例 #1
0
ファイル: Sender.php プロジェクト: rfagen/Phetric
 public static function maybeCreatePhetric()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new self(null, null, '');
     }
     return self::$_instance;
 }
コード例 #2
0
ファイル: Histogram.php プロジェクト: clearspring/phetric
 public function mark($value = null, $other = null)
 {
     if ($value === null && $this->defaultValue != false) {
         $value = $this->defaultValue;
     }
     if (is_null($other)) {
         $other = true;
     }
     Phetric_Sender::histogram($this->_name, $value, $other);
 }
コード例 #3
0
ファイル: Timer.php プロジェクト: clearspring/phetric
 public function mark($value = null, $other = null)
 {
     Phetric_Sender::timer($this->_name, $value);
 }