예제 #1
0
파일: Debug.php 프로젝트: jthurteau/saf
 public static function unmute($index = NULL)
 {
     if (!is_null($index)) {
         unset(self::$_muted[$index]);
     } else {
         self::$_muted = array();
     }
 }