Example #1
0
 /**
  * Get Instance
  * @return BFL_Controller
  */
 public static function getInstance()
 {
     if (NULL === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }