From 53fff063f8d347d5018ff6e8e8f1a6bc2aa70d6c Mon Sep 17 00:00:00 2001 From: vijay kumar Date: Mon, 28 Dec 2015 18:07:01 +0530 Subject: [PATCH] fix typo #462 --- src/commands/MigrationCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/MigrationCommand.php b/src/commands/MigrationCommand.php index 0132f795..bf8fc1c3 100644 --- a/src/commands/MigrationCommand.php +++ b/src/commands/MigrationCommand.php @@ -81,8 +81,8 @@ protected function createMigration($rolesTable, $roleUserTable, $permissionsTabl { $migrationFile = base_path("/database/migrations")."/".date('Y_m_d_His')."_entrust_setup_tables.php"; - $defaultGaurd = Config::get('auth.defaults.guard'); - $providerName = Config::get('auth.guards.'.$defaultGaurd); + $defaultGuard = Config::get('auth.defaults.guard'); + $providerName = Config::get('auth.guards.'.$defaultGuard); $UserClass = Config::get('auth.providers.'.$providerName["provider"]); $usersTable = $providerName['provider'];