コード例 #1
0
ファイル: AdminManager.php プロジェクト: laravelflare/flare
 /**
  * Returns an instance of the Admin.
  * 
  * @return Admin
  */
 public static function getAdminInstance()
 {
     if (!($requested = Admin::getRequested())) {
         return;
     }
     return new $requested();
 }