Completed
Push — master ( 550985...017eb6 )
by Iman
14s
created
src/config/master_password.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
- return [
3
+    return [
4 4
     'MASTER_PASSWORD' => env('MASTER_PASSWORD', false),
5
- ];
5
+    ];
Please login to merge, or discard this patch.
src/MasterPassServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@
 block discarded – undo
44 44
 
45 45
     private function registerAuthProviders()
46 46
     {
47
-        \Auth::provider('eloquentMasterPassword', function ($app, array $config) {
47
+        \Auth::provider('eloquentMasterPassword', function($app, array $config) {
48 48
             return new MasterPassEloquentUserProvider($app['hash'], $config['model']);
49 49
         });
50 50
 
51
-        \Auth::provider('databaseMasterPassword', function ($app, array $config) {
51
+        \Auth::provider('databaseMasterPassword', function($app, array $config) {
52 52
             $connection = $app['db']->connection();
53 53
 
54 54
             return new MasterPassDatabaseUserProvider($connection, $app['hash'], $config['table']);
Please login to merge, or discard this patch.