@@ -7,41 +7,41 @@ |
||
7 | 7 | |
8 | 8 | class VariablesTest extends TestCase |
9 | 9 | { |
10 | - /** |
|
11 | - * Setup the test environment. |
|
12 | - */ |
|
13 | - protected function setUp(): void |
|
14 | - { |
|
15 | - parent::setUp(); |
|
10 | + /** |
|
11 | + * Setup the test environment. |
|
12 | + */ |
|
13 | + protected function setUp(): void |
|
14 | + { |
|
15 | + parent::setUp(); |
|
16 | 16 | |
17 | - Variable::migrate(); |
|
18 | - } |
|
17 | + Variable::migrate(); |
|
18 | + } |
|
19 | 19 | |
20 | - public function testVariableStorage() |
|
21 | - { |
|
22 | - $varString = 'test'; |
|
20 | + public function testVariableStorage() |
|
21 | + { |
|
22 | + $varString = 'test'; |
|
23 | 23 | |
24 | - Variable::memorize('testString', $varString); |
|
24 | + Variable::memorize('testString', $varString); |
|
25 | 25 | |
26 | - $this->assertEquals($varString, Variable::recall('testString'), 'String variable not stored correctly in database'); |
|
26 | + $this->assertEquals($varString, Variable::recall('testString'), 'String variable not stored correctly in database'); |
|
27 | 27 | |
28 | - Variable::forget('testString'); |
|
28 | + Variable::forget('testString'); |
|
29 | 29 | |
30 | - $this->assertEmpty(Variable::recall('testString'), 'String variable not cleared correctly from database'); |
|
30 | + $this->assertEmpty(Variable::recall('testString'), 'String variable not cleared correctly from database'); |
|
31 | 31 | |
32 | - $varArray = [ |
|
33 | - 'aa' => 'test1', |
|
34 | - 'bb' => 'test2' |
|
35 | - ]; |
|
32 | + $varArray = [ |
|
33 | + 'aa' => 'test1', |
|
34 | + 'bb' => 'test2' |
|
35 | + ]; |
|
36 | 36 | |
37 | - Variable::memorize('testArray', $varArray); |
|
37 | + Variable::memorize('testArray', $varArray); |
|
38 | 38 | |
39 | - $this->assertEquals($varArray, Variable::recall('testArray'), 'Array variable not stored correctly in database'); |
|
39 | + $this->assertEquals($varArray, Variable::recall('testArray'), 'Array variable not stored correctly in database'); |
|
40 | 40 | |
41 | - Variable::forget('testArray'); |
|
41 | + Variable::forget('testArray'); |
|
42 | 42 | |
43 | - $this->assertEmpty(Variable::recall('testArray'), 'String variable not cleared correctly from database'); |
|
44 | - } |
|
43 | + $this->assertEmpty(Variable::recall('testArray'), 'String variable not cleared correctly from database'); |
|
44 | + } |
|
45 | 45 | |
46 | 46 | |
47 | 47 | } |
48 | 48 | \ No newline at end of file |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | class User extends Model |
9 | 9 | { |
10 | - use HasEpesiConnection; |
|
10 | + use HasEpesiConnection; |
|
11 | 11 | |
12 | 12 | public $table = 'users'; |
13 | 13 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * Label of the module |
65 | 65 | */ |
66 | 66 | public static function label() { |
67 | - return static::$label?: ucwords(str_ireplace('.', ' ', static::alias())); |
|
67 | + return static::$label ?: ucwords(str_ireplace('.', ' ', static::alias())); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | { |
77 | 77 | $templatesDir = static::path() . DIRECTORY_SEPARATOR . 'Templates'; |
78 | 78 | |
79 | - if (! is_dir($templatesDir)) return; |
|
79 | + if (!is_dir($templatesDir)) return; |
|
80 | 80 | |
81 | 81 | $skinDir = $templatesDir . DIRECTORY_SEPARATOR . $skin; |
82 | 82 | |
83 | - return is_dir($skinDir)? $skinDir: $templatesDir; |
|
83 | + return is_dir($skinDir) ? $skinDir : $templatesDir; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | public static function translations() |
@@ -46,7 +46,9 @@ |
||
46 | 46 | { |
47 | 47 | $templatesDir = static::path() . DIRECTORY_SEPARATOR . 'Templates'; |
48 | 48 | |
49 | - if (! is_dir($templatesDir)) return; |
|
49 | + if (! is_dir($templatesDir)) { |
|
50 | + return; |
|
51 | + } |
|
50 | 52 | |
51 | 53 | $skinDir = $templatesDir . DIRECTORY_SEPARATOR . $skin; |
52 | 54 |
@@ -16,7 +16,9 @@ |
||
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 | } |
@@ -14,11 +14,11 @@ discard block |
||
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 | /** |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | throw new \Exception('Undefined alias in module core class ' . static::class); |
33 | 33 | } |
34 | 34 | |
35 | - return static::$alias?? static::module()::alias(); |
|
35 | + return static::$alias ?? static::module()::alias(); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -65,7 +65,7 @@ discard block |
||
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 | /** |
@@ -33,7 +33,7 @@ |
||
33 | 33 | { |
34 | 34 | $link = $this->link(); |
35 | 35 | |
36 | - $link = is_array($link)? ModuleView::moduleLink(...$link): $link; |
|
36 | + $link = is_array($link) ? ModuleView::moduleLink(...$link) : $link; |
|
37 | 37 | |
38 | 38 | return (new LaunchButton([ |
39 | 39 | 'label' => $this->label(), |
@@ -11,7 +11,7 @@ |
||
11 | 11 | |
12 | 12 | final public static function packageManifest() |
13 | 13 | { |
14 | - return self::$packageManifest = self::$packageManifest?: new PackageManifest(new Filesystem(), app()->basePath(), self::getCachedManifestPath()); |
|
14 | + return self::$packageManifest = self::$packageManifest ?: new PackageManifest(new Filesystem(), app()->basePath(), self::getCachedManifestPath()); |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | final public static function getCachedManifestPath() |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | { |
21 | 21 | $paths = $this->migrations(); |
22 | 22 | |
23 | - foreach (is_array($paths)? $paths: [$paths] as $path) { |
|
23 | + foreach (is_array($paths) ? $paths : [$paths] as $path) { |
|
24 | 24 | \Illuminate\Support\Facades\Artisan::call('migrate', ['--path' => $path, '--force' => true]); |
25 | 25 | } |
26 | 26 | |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | { |
32 | 32 | $paths = $this->migrations(); |
33 | 33 | |
34 | - foreach (is_array($paths)? $paths: [$paths] as $path) { |
|
34 | + foreach (is_array($paths) ? $paths : [$paths] as $path) { |
|
35 | 35 | \Illuminate\Support\Facades\Artisan::call('migrate:rollback', ['--path' => $path]); |
36 | 36 | } |
37 | 37 |
@@ -48,8 +48,8 @@ |
||
48 | 48 | $alias = class_exists($module)? $module::alias(): $module; |
49 | 49 | |
50 | 50 | if (is_array($method) && !$args) { |
51 | - $args = $method; |
|
52 | - $method = 'body'; |
|
51 | + $args = $method; |
|
52 | + $method = 'body'; |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return url(implode('/', ['view', $alias, $method, self::encodeArgs($args)])); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | { |
22 | 22 | $defaultView = self::module()::view(); |
23 | 23 | |
24 | - $viewClass = is_a(static::class, ModuleView::class, true)? static::class: $defaultView; |
|
24 | + $viewClass = is_a(static::class, ModuleView::class, true) ? static::class : $defaultView; |
|
25 | 25 | |
26 | 26 | $viewAlias = null; |
27 | 27 | if ($viewClass !== $defaultView) { |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | final public static function moduleLink($module, $method = 'body', $args = []) |
47 | 47 | { |
48 | - $alias = class_exists($module)? $module::alias(): $module; |
|
48 | + $alias = class_exists($module) ? $module::alias() : $module; |
|
49 | 49 | |
50 | 50 | if (is_array($method) && !$args) { |
51 | 51 | $args = $method; |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | * @throws \Illuminate\Http\Exceptions\HttpResponseException |
65 | 65 | */ |
66 | 66 | final public static function decodeArgs($hash) { |
67 | - if (! $hash) return []; |
|
67 | + if (!$hash) return []; |
|
68 | 68 | |
69 | 69 | $args = session($hash); |
70 | 70 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | final public static function encodeArgs($args) { |
83 | 83 | $args = (array) $args; |
84 | 84 | |
85 | - if (! $args) return; |
|
85 | + if (!$args) return; |
|
86 | 86 | |
87 | 87 | $hash = md5(serialize($args)); |
88 | 88 |
@@ -64,11 +64,15 @@ discard block |
||
64 | 64 | * @throws \Illuminate\Http\Exceptions\HttpResponseException |
65 | 65 | */ |
66 | 66 | final public static function decodeArgs($hash) { |
67 | - if (! $hash) return []; |
|
67 | + if (! $hash) { |
|
68 | + return []; |
|
69 | + } |
|
68 | 70 | |
69 | 71 | $args = session($hash); |
70 | 72 | |
71 | - if (is_null($args)) abort(419); |
|
73 | + if (is_null($args)) { |
|
74 | + abort(419); |
|
75 | + } |
|
72 | 76 | |
73 | 77 | return (array) $args; |
74 | 78 | } |
@@ -82,7 +86,9 @@ discard block |
||
82 | 86 | final public static function encodeArgs($args) { |
83 | 87 | $args = (array) $args; |
84 | 88 | |
85 | - if (! $args) return; |
|
89 | + if (! $args) { |
|
90 | + return; |
|
91 | + } |
|
86 | 92 | |
87 | 93 | $hash = md5(serialize($args)); |
88 | 94 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | { |
65 | 65 | return self::$installed = self::$installed?? self::getCached('epesi-modules-installed', function() { |
66 | 66 | try { |
67 | - $installedModules = Module::pluck('class', 'alias'); |
|
67 | + $installedModules = Module::pluck('class', 'alias'); |
|
68 | 68 | } catch (\Exception $e) { |
69 | 69 | $installedModules = collect(); |
70 | 70 | } |
@@ -104,27 +104,27 @@ discard block |
||
104 | 104 | */ |
105 | 105 | protected static function discoverModuleClasses($namespace, $basePath) |
106 | 106 | { |
107 | - $ret = collect(); |
|
107 | + $ret = collect(); |
|
108 | 108 | |
109 | - $moduleNamespace = trim($namespace, '\\'); |
|
109 | + $moduleNamespace = trim($namespace, '\\'); |
|
110 | 110 | |
111 | - $names = array_slice(explode('\\', $moduleNamespace), - 1); |
|
111 | + $names = array_slice(explode('\\', $moduleNamespace), - 1); |
|
112 | 112 | |
113 | - if ($name = $names? reset($names): '') { |
|
114 | - $moduleClass = $moduleNamespace . '\\' . $name . 'Core'; |
|
113 | + if ($name = $names? reset($names): '') { |
|
114 | + $moduleClass = $moduleNamespace . '\\' . $name . 'Core'; |
|
115 | 115 | |
116 | - if (is_subclass_of($moduleClass, ModuleCore::class)) { |
|
117 | - $ret->add($moduleClass); |
|
118 | - } |
|
119 | - } |
|
116 | + if (is_subclass_of($moduleClass, ModuleCore::class)) { |
|
117 | + $ret->add($moduleClass); |
|
118 | + } |
|
119 | + } |
|
120 | 120 | |
121 | - foreach (glob($basePath . '/*', GLOB_ONLYDIR|GLOB_NOSORT) as $path) { |
|
122 | - $subModuleNamespace = $moduleNamespace . '\\' . basename($path); |
|
121 | + foreach (glob($basePath . '/*', GLOB_ONLYDIR|GLOB_NOSORT) as $path) { |
|
122 | + $subModuleNamespace = $moduleNamespace . '\\' . basename($path); |
|
123 | 123 | |
124 | - $ret = $ret->merge(self::discoverModuleClasses($subModuleNamespace, $path)); |
|
125 | - } |
|
124 | + $ret = $ret->merge(self::discoverModuleClasses($subModuleNamespace, $path)); |
|
125 | + } |
|
126 | 126 | |
127 | - return $ret; |
|
127 | + return $ret; |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
@@ -356,7 +356,6 @@ discard block |
||
356 | 356 | * |
357 | 357 | * @param string $classOrAlias |
358 | 358 | * @throws \Exception |
359 | - |
|
360 | 359 | * @return boolean |
361 | 360 | */ |
362 | 361 | public static function uninstall($classOrAlias) |
@@ -36,7 +36,9 @@ discard block |
||
36 | 36 | public static function getClass($classOrAlias, $installedOnly = false) { |
37 | 37 | $modules = $installedOnly? self::getInstalled(): self::getAll(); |
38 | 38 | |
39 | - if (collect($modules)->contains($classOrAlias)) return $classOrAlias; |
|
39 | + if (collect($modules)->contains($classOrAlias)) { |
|
40 | + return $classOrAlias; |
|
41 | + } |
|
40 | 42 | |
41 | 43 | return $modules[$classOrAlias]?? null; |
42 | 44 | } |
@@ -138,7 +140,9 @@ discard block |
||
138 | 140 | |
139 | 141 | $ret = []; |
140 | 142 | foreach ($installedModules as $module) { |
141 | - if (! $list = $module::$method(...$args)) continue; |
|
143 | + if (! $list = $module::$method(...$args)) { |
|
144 | + continue; |
|
145 | + } |
|
142 | 146 | |
143 | 147 | $ret = array_merge($ret, is_array($list)? $list: [$list]); |
144 | 148 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public static function isInstalled($classOrAlias) |
28 | 28 | { |
29 | - return self::getClass($classOrAlias, true)? 1: 0; |
|
29 | + return self::getClass($classOrAlias, true) ? 1 : 0; |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -48,11 +48,11 @@ discard block |
||
48 | 48 | * @return string; |
49 | 49 | */ |
50 | 50 | public static function getClass($classOrAlias, $installedOnly = false) { |
51 | - $modules = $installedOnly? self::getInstalled(): self::getAll(); |
|
51 | + $modules = $installedOnly ? self::getInstalled() : self::getAll(); |
|
52 | 52 | |
53 | 53 | if (collect($modules)->contains($classOrAlias)) return $classOrAlias; |
54 | 54 | |
55 | - return $modules[$classOrAlias]?? null; |
|
55 | + return $modules[$classOrAlias] ?? null; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public static function getInstalled() |
64 | 64 | { |
65 | - return self::$installed = self::$installed?? self::getCached('epesi-modules-installed', function() { |
|
65 | + return self::$installed = self::$installed ?? self::getCached('epesi-modules-installed', function() { |
|
66 | 66 | try { |
67 | 67 | $installedModules = Module::pluck('class', 'alias'); |
68 | 68 | } catch (\Exception $e) { |
@@ -80,9 +80,9 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public static function getAll() |
82 | 82 | { |
83 | - return self::getCached('epesi-modules-available', function () { |
|
83 | + return self::getCached('epesi-modules-available', function() { |
|
84 | 84 | $modules = collect(); |
85 | - foreach (array_merge(config('epesi.modules', []), self::packageManifest()->modules()?: []) as $namespace => $path) { |
|
85 | + foreach (array_merge(config('epesi.modules', []), self::packageManifest()->modules() ?: []) as $namespace => $path) { |
|
86 | 86 | foreach (self::discoverModuleClasses($namespace, $path) as $moduleClass) { |
87 | 87 | $modules->add(['alias' => $moduleClass::alias(), 'class' => $moduleClass]); |
88 | 88 | } |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | |
111 | 111 | $names = array_slice(explode('\\', $moduleNamespace), - 1); |
112 | 112 | |
113 | - if ($name = $names? reset($names): '') { |
|
113 | + if ($name = $names ? reset($names) : '') { |
|
114 | 114 | $moduleClass = $moduleNamespace . '\\' . $name . 'Core'; |
115 | 115 | |
116 | 116 | if (is_subclass_of($moduleClass, ModuleCore::class)) { |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
121 | - foreach (glob($basePath . '/*', GLOB_ONLYDIR|GLOB_NOSORT) as $path) { |
|
121 | + foreach (glob($basePath . '/*', GLOB_ONLYDIR | GLOB_NOSORT) as $path) { |
|
122 | 122 | $subModuleNamespace = $moduleNamespace . '\\' . basename($path); |
123 | 123 | |
124 | 124 | $ret = $ret->merge(self::discoverModuleClasses($subModuleNamespace, $path)); |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | protected static function getCached($key, \Closure $default) |
138 | 138 | { |
139 | - if (! Cache::has($key)) { |
|
139 | + if (!Cache::has($key)) { |
|
140 | 140 | Cache::forever($key, $default()); |
141 | 141 | } |
142 | 142 | |
@@ -174,12 +174,12 @@ discard block |
||
174 | 174 | */ |
175 | 175 | public static function collect($method, $args = []) |
176 | 176 | { |
177 | - $args = is_array($args)? $args: [$args]; |
|
177 | + $args = is_array($args) ? $args : [$args]; |
|
178 | 178 | |
179 | 179 | $installedModules = self::getInstalled(); |
180 | 180 | |
181 | 181 | // if epesi is not installed fake having the system module to enable its functionality |
182 | - if (! $installedModules->contains(\Epesi\Core\System\SystemCore::class)) { |
|
182 | + if (!$installedModules->contains(\Epesi\Core\System\SystemCore::class)) { |
|
183 | 183 | $installedModules = collect([ |
184 | 184 | 'system' => \Epesi\Core\System\SystemCore::class |
185 | 185 | ]); |
@@ -187,9 +187,9 @@ discard block |
||
187 | 187 | |
188 | 188 | $ret = []; |
189 | 189 | foreach ($installedModules as $module) { |
190 | - if (! $list = $module::$method(...$args)) continue; |
|
190 | + if (!$list = $module::$method(...$args)) continue; |
|
191 | 191 | |
192 | - $ret = array_merge($ret, is_array($list)? $list: [$list]); |
|
192 | + $ret = array_merge($ret, is_array($list) ? $list : [$list]); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | return $ret; |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | return true; |
209 | 209 | } |
210 | 210 | |
211 | - if (! $moduleClass = self::getClass($classOrAlias)) { |
|
211 | + if (!$moduleClass = self::getClass($classOrAlias)) { |
|
212 | 212 | throw new \Exception('Module "' . $classOrAlias . '" could not be identified'); |
213 | 213 | } |
214 | 214 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | ]); |
239 | 239 | |
240 | 240 | if ($installRecommended) { |
241 | - $installRecommended = is_array($installRecommended)? $installRecommended: $module->recommended(); |
|
241 | + $installRecommended = is_array($installRecommended) ? $installRecommended : $module->recommended(); |
|
242 | 242 | |
243 | 243 | foreach ($installRecommended as $recommendedModule) { |
244 | 244 | try { |
@@ -270,11 +270,11 @@ discard block |
||
270 | 270 | while ($unsatisfiedDependencies = self::unsatisfiedDependencies($moduleClass)) { |
271 | 271 | $parentModule = array_shift($unsatisfiedDependencies); |
272 | 272 | |
273 | - if (self::$processing[$parentModule]?? false) { |
|
274 | - throw new \Exception('Cross dependency: '. $parentModule); |
|
273 | + if (self::$processing[$parentModule] ?? false) { |
|
274 | + throw new \Exception('Cross dependency: ' . $parentModule); |
|
275 | 275 | } |
276 | 276 | |
277 | - if (! self::isAvailable($parentModule)) { |
|
277 | + if (!self::isAvailable($parentModule)) { |
|
278 | 278 | throw new \Exception('Module not found: "' . $parentModule . '"'); |
279 | 279 | } |
280 | 280 | |
@@ -361,17 +361,17 @@ discard block |
||
361 | 361 | */ |
362 | 362 | public static function uninstall($classOrAlias) |
363 | 363 | { |
364 | - if (! self::isInstalled($classOrAlias)) { |
|
364 | + if (!self::isInstalled($classOrAlias)) { |
|
365 | 365 | print ('Module "' . $classOrAlias . '" is not installed!'); |
366 | 366 | |
367 | 367 | return true; |
368 | 368 | } |
369 | 369 | |
370 | - if (! $moduleClass = self::getClass($classOrAlias)) { |
|
370 | + if (!$moduleClass = self::getClass($classOrAlias)) { |
|
371 | 371 | throw new \Exception('Module "' . $classOrAlias . '" could not be identified'); |
372 | 372 | } |
373 | 373 | |
374 | - foreach (self::listDependents()[$moduleClass]?? [] as $childModule) { |
|
374 | + foreach (self::listDependents()[$moduleClass] ?? [] as $childModule) { |
|
375 | 375 | self::uninstall($childModule); |
376 | 376 | } |
377 | 377 |