Passed
Branch master (d49f3b)
by Ferry
08:59
created
src/Modules/PrivilegeModule/CbPrivilegesServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function boot()
15 15
     {
16 16
         $this->app['view']->addNamespace('CbPrivilege', __DIR__.'/views');
17
-        $this->loadRoutesFrom( __DIR__.'/privileges_routes.php');
17
+        $this->loadRoutesFrom(__DIR__.'/privileges_routes.php');
18 18
         $this->publishes([__DIR__.'/localization' => resource_path('lang/crudbooster')], 'cb_localization');
19 19
     }
20 20
 
Please login to merge, or discard this patch.
src/Modules/PrivilegeModule/AdminPrivilegesController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $this->col[] = [
32 32
             'label' => 'Superadmin',
33 33
             'name' => 'is_superadmin',
34
-            'callback' => function ($row) {
34
+            'callback' => function($row) {
35 35
                 return ($row->is_superadmin) ? "<span class='label label-success'>Superadmin</span>" : "<span class='label label-default'>Standard</span>";
36 36
             },
37 37
         ];
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         foreach (Request::input('privileges', []) as $moduleId => $data) {
112 112
             //Check Menu
113 113
 
114
-            $arrs = array_get_keys($data, ['is_visible', 'is_create', 'is_read', 'is_edit', 'is_delete',], 0);
114
+            $arrs = array_get_keys($data, ['is_visible', 'is_create', 'is_read', 'is_edit', 'is_delete', ], 0);
115 115
             $this->savePermissions($id, $moduleId, $arrs);
116 116
         }
117 117
 
Please login to merge, or discard this patch.
src/Modules/LogsModule/localization/es/logging.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,18 +1,18 @@
 block discarded – undo
1 1
 <?php 
2 2
 return [
3
-	'log_try_view'            =>'Intentar ver :name en :module',
4
-	'log_try_edit'            =>'Intentar editar :name en :module',
5
-	'log_try_add'             =>'Intentar añadir datos al :module',
6
-	'log_try_add_save'        =>'Intentar añadir :name data en :module',
7
-	'log_try_delete'          =>'Intentar eliminar :name en :module',
8
-	'log_try_delete_selected' =>'Intentar eliminar el :module',
9
-	'log_try_delete_image'    =>'Intentar eliminar la imagen de :name en módulo :module',
10
-	'log_try_update'          =>'Intentar actualizar el :name en :module',
11
-	'log_add'                 =>'Añadir nueva información :name en :module',
12
-	'log_update'              =>'Actualizar información :name en :module',
13
-	'log_delete'              =>'Eliminar información :name en :module',
14
-	'log_delete_image'        =>'Eliminar la imagen de :name en :module',
15
-	'log_login'				  =>'Ingreso de :email desde la Dirección IP :ip',
16
-	'log_forgot'		      =>'Alguien con la dirección IP :ip solicitó su contraseña por email a :email',
17
-	'log_logout'		      =>':email se desconectó',
3
+    'log_try_view'            =>'Intentar ver :name en :module',
4
+    'log_try_edit'            =>'Intentar editar :name en :module',
5
+    'log_try_add'             =>'Intentar añadir datos al :module',
6
+    'log_try_add_save'        =>'Intentar añadir :name data en :module',
7
+    'log_try_delete'          =>'Intentar eliminar :name en :module',
8
+    'log_try_delete_selected' =>'Intentar eliminar el :module',
9
+    'log_try_delete_image'    =>'Intentar eliminar la imagen de :name en módulo :module',
10
+    'log_try_update'          =>'Intentar actualizar el :name en :module',
11
+    'log_add'                 =>'Añadir nueva información :name en :module',
12
+    'log_update'              =>'Actualizar información :name en :module',
13
+    'log_delete'              =>'Eliminar información :name en :module',
14
+    'log_delete_image'        =>'Eliminar la imagen de :name en :module',
15
+    'log_login'				  =>'Ingreso de :email desde la Dirección IP :ip',
16
+    'log_forgot'		      =>'Alguien con la dirección IP :ip solicitó su contraseña por email a :email',
17
+    'log_logout'		      =>':email se desconectó',
18 18
 ];
Please login to merge, or discard this patch.
src/Modules/LogsModule/CbLogsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function boot()
15 15
     {
16
-        $this->loadRoutesFrom( __DIR__.'/logs_routes.php');
16
+        $this->loadRoutesFrom(__DIR__.'/logs_routes.php');
17 17
         $this->publishes([__DIR__.'/localization' => resource_path('lang/crudbooster')], 'cb_localization');
18 18
     }
19 19
 
Please login to merge, or discard this patch.
src/Modules/LogsModule/logs_routes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
     'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class],
4 4
     'prefix' => cbAdminPath(),
5 5
     'namespace' => cbModulesNS('LogsModule'),
6
-], function () {
6
+], function() {
7 7
     Route::get('logs/', ['uses' => 'AdminLogsController@getIndex', 'as' => 'AdminLogsControllerGetIndex']);
8 8
     Route::get('logs/export-data', ['uses' => 'AdminLogsController@getExportData', 'as' => 'AdminLogsControllerGetExportData']);
9 9
     Route::get('logs/data-query', ['uses' => 'AdminLogsController@getDataQuery', 'as' => 'AdminLogsControllerGetDataQuery']);
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
     Route::get('logs/import-data', ['uses' => 'AdminLogsController@getImportData', 'as' => 'AdminLogsControllerGetImportData']);
18 18
 
19 19
 
20
-    Route::post('logs/find-data-old/{one?}', ['uses' => 'AdminLogsController@postFindDataOld', 'as' => 'AdminLogsControllerPostFindDataOld',]);
21
-    Route::post('logs/find-data/{one?}', ['uses' => 'AdminLogsController@postFindData', 'as' => 'AdminLogsControllerPostFindData',]);
20
+    Route::post('logs/find-data-old/{one?}', ['uses' => 'AdminLogsController@postFindDataOld', 'as' => 'AdminLogsControllerPostFindDataOld', ]);
21
+    Route::post('logs/find-data/{one?}', ['uses' => 'AdminLogsController@postFindData', 'as' => 'AdminLogsControllerPostFindData', ]);
22 22
     Route::post('logs/add-save/{one?}', [
23 23
         'uses' => 'AdminLogsController@postAddSave',
24 24
         'as' => 'AdminLogsControllerPostAddSave',
Please login to merge, or discard this patch.
src/Modules/AuthModule/AuthController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function getLockscreen()
32 32
     {
33
-        if (! CRUDBooster::myId()) {
33
+        if (!CRUDBooster::myId()) {
34 34
             Session::flush();
35 35
             return redirect()->route('getLogin')->with('message', cbTrans('alert_session_expired'));
36 36
         }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $password = request("password");
77 77
         $users = CbUsersRepo::findByMail(request("email"));
78 78
 
79
-        if (! \Hash::check($password, $users->password)) {
79
+        if (!\Hash::check($password, $users->password)) {
80 80
             return redirect()->route('getLogin')->with('message', cbTrans('alert_password_wrong'));
81 81
         }
82 82
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 
116 116
     public function postForgot()
117 117
     {
118
-        $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]);
118
+        $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]);
119 119
 
120 120
         if ($validator->fails()) {
121 121
             $message = $validator->errors()->all();
Please login to merge, or discard this patch.
src/Modules/AuthModule/CbAuthServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function boot()
16 16
     {
17 17
         $this->app['view']->addNamespace('CbAuth', __DIR__.'/views');
18
-        $this->loadRoutesFrom( __DIR__.'/auth_routes.php');
18
+        $this->loadRoutesFrom(__DIR__.'/auth_routes.php');
19 19
     }
20 20
 
21 21
     /**
Please login to merge, or discard this patch.
src/Modules/AuthModule/auth_routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 $namespace = cbModulesNS('AuthModule');
3 3
 $prefix = cbAdminPath();
4 4
 
5
-Route::group(['middleware' => ['web'], 'prefix' => $prefix, 'namespace' => $namespace], function () {
5
+Route::group(['middleware' => ['web'], 'prefix' => $prefix, 'namespace' => $namespace], function() {
6 6
     Route::get('/', ['uses' => 'AuthController@getIndex', 'as' => 'AuthControllerGetIndex']);
7 7
     Route::post('unlock-screen', ['uses' => 'AuthController@postUnlockScreen', 'as' => 'postUnlockScreen']);
8 8
     Route::get('lock-screen', ['uses' => 'AuthController@getLockscreen', 'as' => 'getLockScreen']);
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/Step3Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function showForm($id)
12 12
     {
13
-        $row = ModulesRepo::find($id);;
13
+        $row = ModulesRepo::find($id); ;
14 14
 
15 15
         $columns = CRUDBooster::getTableColumns($row->table_name);
16 16
 
Please login to merge, or discard this patch.