コード例 #1
0
ファイル: Autoloader.php プロジェクト: kingsj/core
 /**
  * Switch autoload directory from var/run/classes/ to classes/
  *
  * @param string $dir New autoload directory
  *
  * @return void
  */
 public static function switchLCAutoloadDir()
 {
     static::$lcAutoloadDir = LC_DIR_CLASSES;
 }
コード例 #2
0
ファイル: Autoloader.php プロジェクト: kirkbauer2/kirkxc
 /**
  * Initialize classes directory
  * 
  * @return void
  */
 protected static function initializeClassesDir()
 {
     static::$lcAutoloadDir = \Includes\Decorator\ADecorator::getCacheClassesDir();
 }