Passed
Push — master ( 35a5e3...2ddbf5 )
by Georgi
03:24
created
src/HomePage/HomePageSettings.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 			return [['Template', $availablePages[$row[$column]]?? '[' . __('missing: :path', ['path' => $row[$column]]) . ']']];
54 54
 		}]);
55 55
 		
56
-		$this->grid->addDragHandler()->onReorder(function ($order) {
56
+		$this->grid->addDragHandler()->onReorder(function($order) {
57 57
 			$result = true;
58 58
 			foreach ($this->getHomepages() as $homepage) {
59 59
 				$homepage->priority = array_search($homepage->id, $order);
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
 				$result &= $homepage->save();
62 62
 			}
63 63
 			
64
-			return $result? $this->notify(__('Homepages reordered!')): $this->notifyError(__('Error saving order!'));
64
+			return $result ? $this->notify(__('Homepages reordered!')) : $this->notifyError(__('Error saving order!'));
65 65
 		});
66 66
 		
67
-		$this->grid->addAction(['icon' => 'red trash'], function ($jschain, $id) {
67
+		$this->grid->addAction(['icon' => 'red trash'], function($jschain, $id) {
68 68
 			HomePage::find($id)->delete();
69 69
 				
70 70
 			return $jschain->closest('tr')->transition('fade left');
@@ -87,11 +87,11 @@  discard block
 block discarded – undo
87 87
 		
88 88
 		$rowsEmpty = [];
89 89
 		
90
-		$model = new \atk4\data\Model($rows? new \atk4\data\Persistence_Static($rows): new \atk4\data\Persistence_Array($rowsEmpty));
90
+		$model = new \atk4\data\Model($rows ? new \atk4\data\Persistence_Static($rows) : new \atk4\data\Persistence_Array($rowsEmpty));
91 91
 	
92
-		$pathField = $rows? $model->hasField('path'): $model->addField('path');
92
+		$pathField = $rows ? $model->hasField('path') : $model->addField('path');
93 93
 			
94
-		$roleField = $rows? $model->hasField('role'): $model->addField('role');
94
+		$roleField = $rows ? $model->hasField('role') : $model->addField('role');
95 95
 		
96 96
 		$pathField->setDefaults(['caption' => __('Page'), 'values' => $availablePages]);
97 97
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
 	
108 108
 	public function getHomepageForm()
109 109
 	{
110
-		if (! $this->form) {		
110
+		if (!$this->form) {		
111 111
 			$this->form = new Form(['buttonSave' => ['Button', __('Save'), 'primary']]);
112 112
 	
113 113
 			$this->form->addHook('submit', function($form) {
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 	{
140 140
 		static $cache;
141 141
 		
142
-		if (! isset($cache)) {
142
+		if (!isset($cache)) {
143 143
 			$cache = [];
144 144
 			foreach (HomePageJoint::collect() as $joint) {
145 145
 				$cache[$joint->link()] = $joint->caption();
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
 	 */
157 157
 	public static function getUserHomePage()
158 158
 	{
159
-		if (! $user = Auth::user()) return;
159
+		if (!$user = Auth::user()) return;
160 160
 		
161 161
 		return HomePage::whereIn('role', $user->roles()->pluck('name'))->orderBy('priority')->first();
162 162
 	}
@@ -170,6 +170,6 @@  discard block
 block discarded – undo
170 170
 	{
171 171
 		$homepage = self::getUserHomePage();
172 172
 		
173
-		return $homepage? $homepage->path: self::$defaultPath;
173
+		return $homepage ? $homepage->path : self::$defaultPath;
174 174
 	}
175 175
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,9 @@
 block discarded – undo
34 34
 	 */
35 35
 	public static function getUserHomePage()
36 36
 	{
37
-		if (! $user = Auth::user()) return;
37
+		if (! $user = Auth::user()) {
38
+			return;
39
+		}
38 40
 
39 41
 		return HomePage::whereIn('role', $user->roles()->pluck('name'))->orderBy('priority')->first();
40 42
 	}
Please login to merge, or discard this patch.
src/App.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 		//TODO: set the skin from admin / user selection
34 34
 		$this->skin = config('epesi.app.skin', $this->skin);
35 35
 
36
-		$this->template_dir = array_merge(ModuleManager::collect('templates', $this->skin), $this->template_dir?: []);
36
+		$this->template_dir = array_merge(ModuleManager::collect('templates', $this->skin), $this->template_dir ?: []);
37 37
 	}
38 38
 	
39 39
 	final public static function module()
@@ -83,31 +83,31 @@  discard block
 block discarded – undo
83 83
 		//TODO: include below in app.js and app.css
84 84
 		// jQuery
85 85
 		$urlJs = $this->cdn['jquery']?? 'storage/system/js';
86
-		$this->requireJS($urlJs.'/jquery.min.js');
86
+		$this->requireJS($urlJs . '/jquery.min.js');
87 87
 		
88 88
 		// Semantic UI
89 89
 		$urlJs = $this->cdn['semantic-ui']?? 'storage/system/js';
90 90
 		$urlCss = $this->cdn['semantic-ui']?? 'storage/system/css';
91
-		$this->requireJS($urlJs.'/semantic.min.js');
92
-		$this->requireCSS($urlCss.'/semantic.min.css');
91
+		$this->requireJS($urlJs . '/semantic.min.js');
92
+		$this->requireCSS($urlCss . '/semantic.min.css');
93 93
 		
94 94
 		// Serialize Object
95 95
 		$urlJs = $this->cdn['serialize-object']?? 'storage/system/js';
96
-		$this->requireJS($urlJs.'/jquery.serialize-object.min.js');
96
+		$this->requireJS($urlJs . '/jquery.serialize-object.min.js');
97 97
 		
98 98
 		// Agile UI
99 99
 		$urlJs = $this->cdn['atk']?? 'storage/system/js';
100 100
 		$urlCss = $this->cdn['atk']?? 'storage/system/css';
101
-		$this->requireJS($urlJs.'/atkjs-ui.min.js');
102
-		$this->requireCSS($urlCss.'/agileui.css');
101
+		$this->requireJS($urlJs . '/atkjs-ui.min.js');
102
+		$this->requireCSS($urlCss . '/agileui.css');
103 103
 		
104 104
 		// Draggable
105 105
 		$urlJs = $this->cdn['draggable']?? 'storage/system/js';
106
-		$this->requireJS($urlJs.'/draggable.bundle.js');
106
+		$this->requireJS($urlJs . '/draggable.bundle.js');
107 107
 		
108 108
 		// jQuery niceScroll	
109 109
 		$urlJs = $this->cdn['jquery-nicescroll']?? 'storage/system/js';
110
-		$this->requireJS($urlJs.'/jquery.nicescroll.js');
110
+		$this->requireJS($urlJs . '/jquery.nicescroll.js');
111 111
 	}
112 112
 	
113 113
 	public function addCsrfToken()
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
 		
185 185
 		$key = md5(serialize(func_get_args()));
186 186
 		
187
-		if (! isset($cache[$key])) {
187
+		if (!isset($cache[$key])) {
188 188
 			$cache[$key] = true;
189 189
 			
190 190
 			parent::requireJS($url, $isAsync, $isDefer);
Please login to merge, or discard this patch.
src/Providers/EpesiServiceProvider.php 2 patches
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -10,60 +10,60 @@
 block discarded – undo
10 10
 
11 11
 class EpesiServiceProvider extends ServiceProvider
12 12
 {
13
-    /**
14
-     * Booting the package.
15
-     */
16
-    public function boot()
17
-    {
18
-    	$this->ensureHttps();
13
+	/**
14
+	 * Booting the package.
15
+	 */
16
+	public function boot()
17
+	{
18
+		$this->ensureHttps();
19 19
     	
20
-    	if (env('APP_DEBUG', false)) ModuleManager::clearCache();
20
+		if (env('APP_DEBUG', false)) ModuleManager::clearCache();
21 21
     	
22
-    	Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() {
23
-    		Route::any('/', 'SystemController@index');
24
-    		Route::get('logo', 'SystemController@logo');
25
-    		Route::any('install', 'SystemController@install');
22
+		Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() {
23
+			Route::any('/', 'SystemController@index');
24
+			Route::get('logo', 'SystemController@logo');
25
+			Route::any('install', 'SystemController@install');
26 26
     		
27
-    		Route::group(['middleware' => ['auth', NoCacheHeaders::class]], function() {
28
-    			Route::any('home', 'SystemController@home')->name('home');
27
+			Route::group(['middleware' => ['auth', NoCacheHeaders::class]], function() {
28
+				Route::any('home', 'SystemController@home')->name('home');
29 29
     			
30
-    			Route::any('view/{alias}/{method?}/{args?}', 'SystemController@view');
31
-    		});
32
-    	});
30
+				Route::any('view/{alias}/{method?}/{args?}', 'SystemController@view');
31
+			});
32
+		});
33 33
 
34
-    	// call boot methods on all modules
35
-    	ModuleManager::call('boot');
34
+		// call boot methods on all modules
35
+		ModuleManager::call('boot');
36 36
     		
37 37
 		foreach (ModuleManager::collect('translations') as $path) {
38 38
 			$this->loadJsonTranslationsFrom($path);
39 39
 		}
40 40
 		
41
-    	// Register admin service provider if in admin mode or in console
42
-    	// TODO: apply access restriction to admin mode
41
+		// Register admin service provider if in admin mode or in console
42
+		// TODO: apply access restriction to admin mode
43 43
 //     	if ($this->app->runningInConsole() || (request('admin', false) && Auth::user()->can('modify system'))) {
44
-    	if ($this->app->runningInConsole() || request('admin', false)) {
45
-    		$this->app->register(AdminServiceProvider::class);
46
-    	}
47
-    }
44
+		if ($this->app->runningInConsole() || request('admin', false)) {
45
+			$this->app->register(AdminServiceProvider::class);
46
+		}
47
+	}
48 48
 
49
-    /**
50
-     * Register the provider.
51
-     */
52
-    public function register()
53
-    {
54
-    	$this->app->singleton(App::class);
55
-    }
49
+	/**
50
+	 * Register the provider.
51
+	 */
52
+	public function register()
53
+	{
54
+		$this->app->singleton(App::class);
55
+	}
56 56
     
57
-    /**
58
-     * Force to set https scheme if https enabled.
59
-     *
60
-     * @return void
61
-     */
62
-    protected function ensureHttps()
63
-    {
64
-    	if (config('epesi.https') || config('epesi.secure')) {
65
-    		url()->forceScheme('https');
66
-    		$this->app['request']->server->set('HTTPS', true);
67
-    	}
68
-    }
57
+	/**
58
+	 * Force to set https scheme if https enabled.
59
+	 *
60
+	 * @return void
61
+	 */
62
+	protected function ensureHttps()
63
+	{
64
+		if (config('epesi.https') || config('epesi.secure')) {
65
+			url()->forceScheme('https');
66
+			$this->app['request']->server->set('HTTPS', true);
67
+		}
68
+	}
69 69
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,9 @@
 block discarded – undo
17 17
     {
18 18
     	$this->ensureHttps();
19 19
     	
20
-    	if (env('APP_DEBUG', false)) ModuleManager::clearCache();
20
+    	if (env('APP_DEBUG', false)) {
21
+    		ModuleManager::clearCache();
22
+    	}
21 23
     	
22 24
     	Route::group(['namespace' => 'Epesi\Core\Controllers', 'middleware' => 'web'], function() {
23 25
     		Route::any('/', 'SystemController@index');
Please login to merge, or discard this patch.
src/System/Logo/LogoSettings.php 2 patches
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,9 @@
 block discarded – undo
42 42
 		});
43 43
 
44 44
 		$logo->onUpload(function ($files) use ($form, $logo) {
45
-			if ($files === 'error')	return $form->error('logo', __('Error uploading image'));
45
+			if ($files === 'error') {
46
+				return $form->error('logo', __('Error uploading image'));
47
+			}
46 48
 			
47 49
 			$tmpPath = self::alias() . '/tmp/' . $files['name'];
48 50
 			
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 			$logo->setThumbnailSrc(asset('storage/' . self::alias() . '/' . self::$defaultLogo));
49 49
 		});
50 50
 
51
-		$logo->onUpload(function ($files) use ($form, $logo) {
51
+		$logo->onUpload(function($files) use ($form, $logo) {
52 52
 			if ($files === 'error')	return $form->error('logo', __('Error uploading image'));
53 53
 			
54 54
 			$tmpPath = self::alias() . '/tmp/' . $files['name'];
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 		});
60 60
 					
61 61
 		$form->onSubmit(function($form) {
62
-			if ($name = $form->model['custom_logo']? $form->model['logo']: null) {
62
+			if ($name = $form->model['custom_logo'] ? $form->model['logo'] : null) {
63 63
 				$storage = $this->storage();
64 64
 				$from = self::alias() . '/tmp/' . $name;
65 65
 				$to = self::alias() . '/' . $name;				
Please login to merge, or discard this patch.
src/System/Seeds/ActionButton.php 3 patches
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -8,79 +8,79 @@
 block discarded – undo
8 8
 
9 9
 class ActionButton extends View
10 10
 {
11
-    public $defaultTemplate = 'action_button.html';
11
+	public $defaultTemplate = 'action_button.html';
12 12
 
13
-    public $ui = 'basic inverted action button';
13
+	public $ui = 'basic inverted action button';
14 14
 
15
-    /**
16
-     * Icon that will appear on the button (top).
17
-     *
18
-     * @var string|array|Icon
19
-     */
20
-    public $icon;
15
+	/**
16
+	 * Icon that will appear on the button (top).
17
+	 *
18
+	 * @var string|array|Icon
19
+	 */
20
+	public $icon;
21 21
     
22
-    public $label;
22
+	public $label;
23 23
 
24
-    public $element = 'a';
24
+	public $element = 'a';
25 25
     
26
-    public $weight = 10;
26
+	public $weight = 10;
27 27
     
28
-    public $callback;
28
+	public $callback;
29 29
 
30
-    public function renderView()
31
-    {
32
-        $this->addIcon();
30
+	public function renderView()
31
+	{
32
+		$this->addIcon();
33 33
         
34
-        $this->addLabel();
34
+		$this->addLabel();
35 35
         
36
-        $this->addCallback();
36
+		$this->addCallback();
37 37
 
38
-        parent::renderView();
39
-    }
38
+		parent::renderView();
39
+	}
40 40
     
41
-    protected function addIcon()
42
-    {
43
-    	if (! $icon = $this->getIcon()) return;
41
+	protected function addIcon()
42
+	{
43
+		if (! $icon = $this->getIcon()) return;
44 44
     	
45
-    	$this->add($icon, 'Icon')->id = null;
45
+		$this->add($icon, 'Icon')->id = null;
46 46
     	
47
-    	$this->addClass('icon');
47
+		$this->addClass('icon');
48 48
     	
49
-    	return $this;
50
-    }
49
+		return $this;
50
+	}
51 51
     
52
-    protected function addLabel()
53
-    {
54
-    	$this->content = $this->label?: $this->content;
52
+	protected function addLabel()
53
+	{
54
+		$this->content = $this->label?: $this->content;
55 55
     	
56
-    	return $this;
57
-    }
56
+		return $this;
57
+	}
58 58
 
59
-    public function getIcon()
60
-    {
61
-    	return is_object($this->icon)? $this->icon: new Icon($this->icon);
62
-    }
59
+	public function getIcon()
60
+	{
61
+		return is_object($this->icon)? $this->icon: new Icon($this->icon);
62
+	}
63 63
     
64
-    public function callback($callable)
65
-    {
66
-    	$this->callback = $callable;
64
+	public function callback($callable)
65
+	{
66
+		$this->callback = $callable;
67 67
     	
68
-    	return $this;
69
-    }
68
+		return $this;
69
+	}
70 70
     
71
-    public function addCallback()
72
-    {
73
-    	if (!$callable = $this->callback) return;
71
+	public function addCallback()
72
+	{
73
+		if (!$callable = $this->callback) return;
74 74
     	
75
-    	if (is_callable($callable)) {
76
-    		$callable = $this->add('jsCallback')->set($callable);
77
-    	}
75
+		if (is_callable($callable)) {
76
+			$callable = $this->add('jsCallback')->set($callable);
77
+		}
78 78
     	
79
-    	if ($callable instanceof jsCallback) {
80
-    		$this->on('click', $callable);
81
-    	}
79
+		if ($callable instanceof jsCallback) {
80
+			$this->on('click', $callable);
81
+		}
82 82
     	
83
-    	return $this;
84
-    }
83
+		return $this;
84
+	}
85 85
 
86 86
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     
41 41
     protected function addIcon()
42 42
     {
43
-    	if (! $icon = $this->getIcon()) return;
43
+    	if (!$icon = $this->getIcon()) return;
44 44
     	
45 45
     	$this->add($icon, 'Icon')->id = null;
46 46
     	
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
     
52 52
     protected function addLabel()
53 53
     {
54
-    	$this->content = $this->label?: $this->content;
54
+    	$this->content = $this->label ?: $this->content;
55 55
     	
56 56
     	return $this;
57 57
     }
58 58
 
59 59
     public function getIcon()
60 60
     {
61
-    	return is_object($this->icon)? $this->icon: new Icon($this->icon);
61
+    	return is_object($this->icon) ? $this->icon : new Icon($this->icon);
62 62
     }
63 63
     
64 64
     public function callback($callable)
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,9 @@  discard block
 block discarded – undo
40 40
     
41 41
     protected function addIcon()
42 42
     {
43
-    	if (! $icon = $this->getIcon()) return;
43
+    	if (! $icon = $this->getIcon()) {
44
+    		return;
45
+    	}
44 46
     	
45 47
     	$this->add($icon, 'Icon')->id = null;
46 48
     	
@@ -70,7 +72,9 @@  discard block
 block discarded – undo
70 72
     
71 73
     public function addCallback()
72 74
     {
73
-    	if (!$callable = $this->callback) return;
75
+    	if (!$callable = $this->callback) {
76
+    		return;
77
+    	}
74 78
     	
75 79
     	if (is_callable($callable)) {
76 80
     		$callable = $this->add('jsCallback')->set($callable);
Please login to merge, or discard this patch.
src/System/Integration/Modules/Concerns/HasModule.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@  discard block
 block discarded – undo
14 14
 	 */
15 15
 	final public static function view($alias = null)
16 16
 	{
17
-		$class = self::namespace() . '\\' . ($alias? Str::studly($alias): (static::name() . 'View'));
17
+		$class = self::namespace() . '\\' . ($alias ? Str::studly($alias) : (static::name() . 'View'));
18 18
 		
19 19
 		if ($alias) return $class;
20 20
 		
21
-		return static::$view?: $class;
21
+		return static::$view ?: $class;
22 22
 	}
23 23
 	
24 24
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	{
66 66
 		$names = array_slice(explode('\\', static::class), -2, -1);
67 67
 		
68
-		return $names? reset($names): '';
68
+		return $names ? reset($names) : '';
69 69
 	}
70 70
 	
71 71
 	/**
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,9 @@
 block discarded – undo
16 16
 	{
17 17
 		$class = self::namespace() . '\\' . ($alias? Str::studly($alias): (static::name() . 'View'));
18 18
 		
19
-		if ($alias) return $class;
19
+		if ($alias) {
20
+			return $class;
21
+		}
20 22
 		
21 23
 		return static::$view?: $class;
22 24
 	}
Please login to merge, or discard this patch.
src/Controllers/SystemController.php 3 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 {
13 13
     public function index()
14 14
     {
15
-    	return SystemCore::isInstalled()? redirect('home'): redirect('install');
15
+    	return SystemCore::isInstalled() ? redirect('home') : redirect('install');
16 16
     }
17 17
     
18 18
     public function install(Epesi $epesi)
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     
37 37
     public function home()
38 38
     {
39
-    	return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\HomePageSettings::getUserHomePagePath(): 'install');
39
+    	return redirect(SystemCore::isInstalled() ? \Epesi\Core\HomePage\HomePageSettings::getUserHomePagePath() : 'install');
40 40
     }
41 41
     
42 42
     public function logo()
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     		}
65 65
     	}
66 66
 
67
-    	if (! $view) abort(404);
67
+    	if (!$view) abort(404);
68 68
     	
69 69
     	$epesi->add($view)->displayModuleContent($method, $args);
70 70
     	
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,9 @@  discard block
 block discarded – undo
20 20
     	// make sure the installation information is fresh
21 21
     	ModuleManager::clearCache();
22 22
     	
23
-    	if (SystemCore::isInstalled()) return redirect('home');
23
+    	if (SystemCore::isInstalled()) {
24
+    		return redirect('home');
25
+    	}
24 26
     	
25 27
     	$epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]);
26 28
     	
@@ -64,7 +66,9 @@  discard block
 block discarded – undo
64 66
     		}
65 67
     	}
66 68
 
67
-    	if (! $view) abort(404);
69
+    	if (! $view) {
70
+    		abort(404);
71
+    	}
68 72
     	
69 73
     	$epesi->add($view)->displayModuleContent($method, $args);
70 74
     	
Please login to merge, or discard this patch.
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -11,66 +11,66 @@
 block discarded – undo
11 11
 
12 12
 class SystemController extends Controller
13 13
 {
14
-    public function index()
15
-    {
16
-    	return SystemCore::isInstalled()? redirect('home'): redirect('install');
17
-    }
14
+	public function index()
15
+	{
16
+		return SystemCore::isInstalled()? redirect('home'): redirect('install');
17
+	}
18 18
     
19
-    public function install(Epesi $epesi)
20
-    {
21
-    	// make sure the installation information is fresh
22
-    	ModuleManager::clearCache();
19
+	public function install(Epesi $epesi)
20
+	{
21
+		// make sure the installation information is fresh
22
+		ModuleManager::clearCache();
23 23
     	
24
-    	if (SystemCore::isInstalled()) return redirect('home');
24
+		if (SystemCore::isInstalled()) return redirect('home');
25 25
     	
26
-    	$epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]);
26
+		$epesi->title = __(':epesi > Installation', ['epesi' => config('epesi.app.title')]);
27 27
     	
28
-    	$epesi->initLayout('Centered');
28
+		$epesi->initLayout('Centered');
29 29
     	
30
-    	$epesi->layout->set('logo', url('logo'));
31
-    	$epesi->layout->template->setHTML('copyright', config('epesi.app.copyright'));
30
+		$epesi->layout->set('logo', url('logo'));
31
+		$epesi->layout->template->setHTML('copyright', config('epesi.app.copyright'));
32 32
     	
33
-    	$epesi->add(new \Epesi\Core\System\SystemInstallWizard());
33
+		$epesi->add(new \Epesi\Core\System\SystemInstallWizard());
34 34
     	
35
-    	return $epesi->response();
36
-    }
35
+		return $epesi->response();
36
+	}
37 37
     
38
-    public function home()
39
-    {
40
-    	return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\HomePageSettings::getUserHomePagePath(): 'install');
41
-    }
38
+	public function home()
39
+	{
40
+		return redirect(SystemCore::isInstalled()? \Epesi\Core\HomePage\HomePageSettings::getUserHomePagePath(): 'install');
41
+	}
42 42
     
43
-    public function logo()
44
-    { 
45
-    	$logoFile = \Epesi\Core\System\Logo\LogoSettings::getLogoFile();
43
+	public function logo()
44
+	{ 
45
+		$logoFile = \Epesi\Core\System\Logo\LogoSettings::getLogoFile();
46 46
 
47
-    	return response(File::get($logoFile), 200, ['Content-type' => File::mimeType($logoFile)])->setMaxAge(604800)->setPublic();
48
-    }
47
+		return response(File::get($logoFile), 200, ['Content-type' => File::mimeType($logoFile)])->setMaxAge(604800)->setPublic();
48
+	}
49 49
     
50
-    public function view(Epesi $epesi, $module, $method = 'body', $args = [])
51
-    {
52
-    	$epesi->initLayout(new LayoutView());
50
+	public function view(Epesi $epesi, $module, $method = 'body', $args = [])
51
+	{
52
+		$epesi->initLayout(new LayoutView());
53 53
     	
54
-    	$alias = explode(':', $module);
54
+		$alias = explode(':', $module);
55 55
     	
56
-    	$moduleAlias = $alias[0];
57
-    	$viewAlias = $alias[1]?? null;
56
+		$moduleAlias = $alias[0];
57
+		$viewAlias = $alias[1]?? null;
58 58
     	
59
-    	$view = null;
60
-    	if ($module = ModuleManager::getClass($moduleAlias, true)) {
61
-    		$viewClass = $module::view($viewAlias);
59
+		$view = null;
60
+		if ($module = ModuleManager::getClass($moduleAlias, true)) {
61
+			$viewClass = $module::view($viewAlias);
62 62
 
63
-    		if (class_exists($viewClass)) {
64
-    			$view = new $viewClass();
65
-    		}
66
-    	}
63
+			if (class_exists($viewClass)) {
64
+				$view = new $viewClass();
65
+			}
66
+		}
67 67
 
68
-    	if (! $view) abort(404);
68
+		if (! $view) abort(404);
69 69
     	
70
-    	$epesi->add($view)->displayModuleContent($method, $args);
70
+		$epesi->add($view)->displayModuleContent($method, $args);
71 71
     	
72
-    	$epesi->setLocation($view->location());
72
+		$epesi->setLocation($view->location());
73 73
     	
74
-    	return $epesi->response();
75
-    }
74
+		return $epesi->response();
75
+	}
76 76
 }
Please login to merge, or discard this patch.
src/System/Database/Models/Variable.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 	private static $variables;
18 18
 	
19 19
 	private static function cache() {
20
-		if(isset(self::$variables)) return;
20
+		if (isset(self::$variables)) return;
21 21
 		
22 22
 		self::$variables = self::pluck('value', 'name');
23 23
 	}
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	public static function get($name, $default = null) {
26 26
 		self::cache();
27 27
 		
28
-		if (! self::$variables->has($name)) return $default;
28
+		if (!self::$variables->has($name)) return $default;
29 29
 		
30 30
 		return self::$variables->get($name, $default)?? $default;
31 31
 	}
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
 		return self::updateOrCreate(compact('name'), compact('value'));
45 45
 	}
46 46
 	
47
-	public static function forget($name, $throwError=true) {
47
+	public static function forget($name, $throwError = true) {
48 48
 		self::cache();
49 49
 		
50
-		if (! self::$variables->has($name) && $throwError) {
50
+		if (!self::$variables->has($name) && $throwError) {
51 51
 			throw new \Exception('No such variable in database: ' . $name);
52 52
 		}
53 53
 		
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,9 @@  discard block
 block discarded – undo
17 17
 	private static $variables;
18 18
 	
19 19
 	private static function cache() {
20
-		if(isset(self::$variables)) return;
20
+		if(isset(self::$variables)) {
21
+			return;
22
+		}
21 23
 		
22 24
 		self::$variables = self::pluck('value', 'name');
23 25
 	}
@@ -25,7 +27,9 @@  discard block
 block discarded – undo
25 27
 	public static function get($name, $default = null) {
26 28
 		self::cache();
27 29
 		
28
-		if (! self::$variables->has($name)) return $default;
30
+		if (! self::$variables->has($name)) {
31
+			return $default;
32
+		}
29 33
 		
30 34
 		return self::$variables->get($name, $default)?? $default;
31 35
 	}
Please login to merge, or discard this patch.
src/System/Database/Migrations/2019_09_18_173148_create_core_tables.php 2 patches
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -6,37 +6,37 @@
 block discarded – undo
6 6
 
7 7
 class CreateCoreTables extends Migration
8 8
 {
9
-    /**
10
-     * Run the migrations.
11
-     *
12
-     * @return void
13
-     */
14
-    public function up()
15
-    {
16
-    	$this->down();
9
+	/**
10
+	 * Run the migrations.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function up()
15
+	{
16
+		$this->down();
17 17
     	
18
-    	Schema::create('variables', function (Blueprint $table) {
19
-            $table->string('name', 128)->primary();
20
-            $table->text('value')->nullable();
21
-        });
18
+		Schema::create('variables', function (Blueprint $table) {
19
+			$table->string('name', 128)->primary();
20
+			$table->text('value')->nullable();
21
+		});
22 22
     	
23
-    	Schema::create('modules', function (Blueprint $table) {
24
-            $table->string('class', 512);
25
-            $table->string('alias', 128)->unique();
26
-            $table->smallInteger('priority')->default(0);
27
-            $table->smallInteger('state')->default(1);
28
-        });
29
-    }
23
+		Schema::create('modules', function (Blueprint $table) {
24
+			$table->string('class', 512);
25
+			$table->string('alias', 128)->unique();
26
+			$table->smallInteger('priority')->default(0);
27
+			$table->smallInteger('state')->default(1);
28
+		});
29
+	}
30 30
 
31
-    /**
32
-     * Reverse the migrations.
33
-     *
34
-     * @return void
35
-     */
36
-    public function down()
37
-    {
38
-    	Schema::dropIfExists('variables');
31
+	/**
32
+	 * Reverse the migrations.
33
+	 *
34
+	 * @return void
35
+	 */
36
+	public function down()
37
+	{
38
+		Schema::dropIfExists('variables');
39 39
     	
40
-    	Schema::dropIfExists('modules');
41
-    }
40
+		Schema::dropIfExists('modules');
41
+	}
42 42
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
     {
16 16
     	$this->down();
17 17
     	
18
-    	Schema::create('variables', function (Blueprint $table) {
18
+    	Schema::create('variables', function(Blueprint $table) {
19 19
             $table->string('name', 128)->primary();
20 20
             $table->text('value')->nullable();
21 21
         });
22 22
     	
23
-    	Schema::create('modules', function (Blueprint $table) {
23
+    	Schema::create('modules', function(Blueprint $table) {
24 24
             $table->string('class', 512);
25 25
             $table->string('alias', 128)->unique();
26 26
             $table->smallInteger('priority')->default(0);
Please login to merge, or discard this patch.