DebugKit\DebugTimer::clear PHP 메소드

clear() 공개 정적인 메소드

Clear all existing timers
public static clear ( ) : boolean
리턴 boolean true
    public static function clear()
    {
        self::$_timers = [];
        return true;
    }

Usage Example

예제 #1
0
 /**
  * End a test
  *
  * @return void
  */
 public function tearDown()
 {
     parent::tearDown();
     unset($this->Article);
     TableRegistry::clear();
     DebugTimer::clear();
 }
All Usage Examples Of DebugKit\DebugTimer::clear