예제 #1
0
파일: App.php 프로젝트: hutchike/YAWF
 /**
  * Get/set the prefix to apply to URIs
  *
  * @param String $prefix an optional prefix to apply to URIs
  * @return String the current prefix being applied to URIs
  */
 public static function prefix($prefix = NULL)
 {
     return is_null($prefix) ? self::$prefix : (self::$prefix = $prefix);
 }