コード例 #1
0
ファイル: phing.php プロジェクト: hkilter/OpenSupplyChains
 /**
  * Returns reference to Timer object.
  * @return Timer
  */
 public static function getTimer()
 {
     if (self::$timer === null) {
         include_once 'phing/system/util/Timer.php';
         self::$timer = new Timer();
     }
     return self::$timer;
 }