예제 #1
0
파일: PadlLibrary.php 프로젝트: vienis/padl
 /**
  * Initialize autoloading for Padl.
  *
  * This is designed to play nicely with other autoloaders.
  *
  * @return void
  */
 public static function init()
 {
     if (self::$library == null) {
         self::$library = new PadlLibrary();
     }
     return self::$library;
 }