Ejemplo n.º 1
0
 /**
  * Get all of the created "drivers".
  *
  * @return array 
  * @static 
  */
 public static function getDrivers()
 {
     //Method inherited from \Illuminate\Support\Manager
     return \SleepingOwl\AdminAuth\AdminAuthManager::getDrivers();
 }
Ejemplo n.º 2
0
 /**
  * Create the user provider implementation for the driver.
  *
  * @param string $provider
  * @return \Illuminate\Contracts\Auth\UserProvider 
  * @throws \InvalidArgumentException
  * @static 
  */
 public static function createUserProvider($provider)
 {
     //Method inherited from \Illuminate\Auth\AuthManager
     return \SleepingOwl\AdminAuth\AdminAuthManager::createUserProvider($provider);
 }