Completed
Push — master ( 86021d...8b8d13 )
by Vojta
02:04
created
Plugin.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 
40 40
     public function boot()
41 41
     {
42
-        Event::listen('backend.menu.extendItems', function ($manager) {
42
+        Event::listen('backend.menu.extendItems', function($manager) {
43 43
             $manager->addSideMenuItems('RainLab.User', 'user', [
44 44
                 'users' => [
45 45
                     'label' => 'rainlab.user::lang.users.menu_label',
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
 class Plugin extends PluginBase
14 14
 {
15 15
     public $require = [
16
-    	'RainLab.User',
16
+        'RainLab.User',
17 17
     ];
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
models/UserImportModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
             if ($pathinfo['filename'] == $username) {
74 74
                 $file = new File();
75 75
                 $file->is_public = $this->imagePublic;
76
-                $file->fromFile(base_path() . $pathinfo['dirname'] . '/' . $pathinfo['basename']);
76
+                $file->fromFile(base_path().$pathinfo['dirname'].'/'.$pathinfo['basename']);
77 77
 
78 78
                 return $file;
79 79
             }
Please login to merge, or discard this patch.