@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * @var array |
14 | 14 | */ |
15 | - protected $redirect = ['edit' => 'edit', 'create' => 'edit']; |
|
15 | + protected $redirect = [ 'edit' => 'edit', 'create' => 'edit' ]; |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * @param string $redirect |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function fireDisplay() |
56 | 56 | { |
57 | - if (! method_exists($this, 'onDisplay')) { |
|
57 | + if (!method_exists($this, 'onDisplay')) { |
|
58 | 58 | return; |
59 | 59 | } |
60 | 60 | |
61 | - $display = app()->call([$this, 'onDisplay']); |
|
61 | + $display = app()->call([ $this, 'onDisplay' ]); |
|
62 | 62 | |
63 | 63 | if ($display instanceof DisplayInterface) { |
64 | 64 | $display->setModelClass($this->getClass()); |
@@ -73,11 +73,11 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public function fireCreate() |
75 | 75 | { |
76 | - if (! method_exists($this, 'onCreate')) { |
|
76 | + if (!method_exists($this, 'onCreate')) { |
|
77 | 77 | return; |
78 | 78 | } |
79 | 79 | |
80 | - $form = app()->call([$this, 'onCreate']); |
|
80 | + $form = app()->call([ $this, 'onCreate' ]); |
|
81 | 81 | if ($form instanceof DisplayInterface) { |
82 | 82 | $form->setModelClass($this->getClass()); |
83 | 83 | } |
@@ -100,11 +100,11 @@ discard block |
||
100 | 100 | */ |
101 | 101 | public function fireEdit($id) |
102 | 102 | { |
103 | - if (! method_exists($this, 'onEdit')) { |
|
103 | + if (!method_exists($this, 'onEdit')) { |
|
104 | 104 | return; |
105 | 105 | } |
106 | 106 | |
107 | - $form = app()->call([$this, 'onEdit'], ['id' => $id]); |
|
107 | + $form = app()->call([ $this, 'onEdit' ], [ 'id' => $id ]); |
|
108 | 108 | if ($form instanceof DisplayInterface) { |
109 | 109 | $form->setModelClass($this->getClass()); |
110 | 110 | } |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | public function fireDelete($id) |
130 | 130 | { |
131 | 131 | if (method_exists($this, 'onDelete')) { |
132 | - return app()->call([$this, 'onDelete'], ['id' => $id]); |
|
132 | + return app()->call([ $this, 'onDelete' ], [ 'id' => $id ]); |
|
133 | 133 | } |
134 | 134 | } |
135 | 135 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | public function fireDestroy($id) |
142 | 142 | { |
143 | 143 | if (method_exists($this, 'onDestroy')) { |
144 | - return app()->call([$this, 'onDestroy'], ['id' => $id]); |
|
144 | + return app()->call([ $this, 'onDestroy' ], [ 'id' => $id ]); |
|
145 | 145 | } |
146 | 146 | } |
147 | 147 | |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | public function fireRestore($id) |
154 | 154 | { |
155 | 155 | if (method_exists($this, 'onRestore')) { |
156 | - return app()->call([$this, 'onRestore'], ['id' => $id]); |
|
156 | + return app()->call([ $this, 'onRestore' ], [ 'id' => $id ]); |
|
157 | 157 | } |
158 | 158 | } |
159 | 159 | } |
@@ -28,16 +28,16 @@ |
||
28 | 28 | */ |
29 | 29 | public function fire(Filesystem $files) |
30 | 30 | { |
31 | - if (! defined('SLEEPINGOWL_STUB_PATH')) { |
|
31 | + if (!defined('SLEEPINGOWL_STUB_PATH')) { |
|
32 | 32 | define('SLEEPINGOWL_STUB_PATH', __DIR__.'/stubs'); |
33 | 33 | } |
34 | 34 | |
35 | - if (! $this->confirmToProceed('SleepingOwl Admin')) { |
|
35 | + if (!$this->confirmToProceed('SleepingOwl Admin')) { |
|
36 | 36 | return; |
37 | 37 | } |
38 | 38 | |
39 | - $this->call('vendor:publish', ['--tag' => 'config']); |
|
40 | - $this->config = new Repository($this->laravel['config']->get('sleeping_owl')); |
|
39 | + $this->call('vendor:publish', [ '--tag' => 'config' ]); |
|
40 | + $this->config = new Repository($this->laravel[ 'config' ]->get('sleeping_owl')); |
|
41 | 41 | |
42 | 42 | $this->files = $files; |
43 | 43 |
@@ -16,6 +16,6 @@ |
||
16 | 16 | */ |
17 | 17 | public function install() |
18 | 18 | { |
19 | - $this->command->call('vendor:publish', ['--tag' => 'assets', '--force']); |
|
19 | + $this->command->call('vendor:publish', [ '--tag' => 'assets', '--force' ]); |
|
20 | 20 | } |
21 | 21 | } |
@@ -82,7 +82,7 @@ |
||
82 | 82 | protected function getArguments() |
83 | 83 | { |
84 | 84 | $arguments = parent::getArguments(); |
85 | - $arguments[] = ['model', InputArgument::REQUIRED, 'The name of the model class']; |
|
85 | + $arguments[ ] = [ 'model', InputArgument::REQUIRED, 'The name of the model class' ]; |
|
86 | 86 | |
87 | 87 | return $arguments; |
88 | 88 | } |
@@ -31,12 +31,12 @@ |
||
31 | 31 | Installation\CreateSectionServiceProvider::class, |
32 | 32 | Installation\CreatePublicDirectory::class, |
33 | 33 | ]) |
34 | - ->map(function ($installer) { |
|
34 | + ->map(function($installer) { |
|
35 | 35 | return new $installer($this, $this->config); |
36 | 36 | }) |
37 | - ->filter(function ($installer) { |
|
38 | - return $this->option('force') ? true : ! $installer->installed(); |
|
39 | - })->each(function ($installer) { |
|
37 | + ->filter(function($installer) { |
|
38 | + return $this->option('force') ? true : !$installer->installed(); |
|
39 | + })->each(function($installer) { |
|
40 | 40 | $installer->install(); |
41 | 41 | $installer->showInfo(); |
42 | 42 | }); |
@@ -24,12 +24,12 @@ |
||
24 | 24 | collect([ |
25 | 25 | Installation\PublishAssets::class, |
26 | 26 | ]) |
27 | - ->map(function ($installer) { |
|
27 | + ->map(function($installer) { |
|
28 | 28 | return new $installer($this, $this->config); |
29 | 29 | }) |
30 | - ->filter(function ($installer) { |
|
31 | - return $this->option('force') ? true : ! $installer->installed(); |
|
32 | - })->each(function ($installer) { |
|
30 | + ->filter(function($installer) { |
|
31 | + return $this->option('force') ? true : !$installer->installed(); |
|
32 | + })->each(function($installer) { |
|
33 | 33 | $installer->install(); |
34 | 34 | $installer->showInfo(); |
35 | 35 | }); |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | { |
54 | 54 | $userClass = $this->getUserClass(); |
55 | 55 | |
56 | - $headers = ['id', 'name', 'email']; |
|
56 | + $headers = [ 'id', 'name', 'email' ]; |
|
57 | 57 | $users = $userClass::get($headers); |
58 | 58 | |
59 | 59 | $this->table($headers, $users); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | return; |
70 | 70 | } |
71 | 71 | |
72 | - if (! is_null($userClass::where('email', $email)->first())) { |
|
72 | + if (!is_null($userClass::where('email', $email)->first())) { |
|
73 | 73 | $this->error("User with same email [{$email}] exists."); |
74 | 74 | |
75 | 75 | return; |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | } |
121 | 121 | |
122 | 122 | $confirm = $this->confirm("Are you sure want to delete user with id [{$id}]?", false); |
123 | - if (! $confirm) { |
|
123 | + if (!$confirm) { |
|
124 | 124 | return; |
125 | 125 | } |
126 | 126 | |
@@ -173,9 +173,9 @@ discard block |
||
173 | 173 | protected function getOptions() |
174 | 174 | { |
175 | 175 | return [ |
176 | - ['create', 'c', InputOption::VALUE_NONE, 'Create new user.'], |
|
177 | - ['delete', 'd', InputOption::VALUE_NONE, 'Delete user.'], |
|
178 | - ['password', 'p', InputOption::VALUE_NONE, 'Change user password.'], |
|
176 | + [ 'create', 'c', InputOption::VALUE_NONE, 'Create new user.' ], |
|
177 | + [ 'delete', 'd', InputOption::VALUE_NONE, 'Delete user.' ], |
|
178 | + [ 'password', 'p', InputOption::VALUE_NONE, 'Change user password.' ], |
|
179 | 179 | ]; |
180 | 180 | } |
181 | 181 | } |
@@ -31,14 +31,14 @@ |
||
31 | 31 | 'App\Providers\AdminSectionsServiceProvider' |
32 | 32 | ); |
33 | 33 | |
34 | - if (! $provider) { |
|
34 | + if (!$provider) { |
|
35 | 35 | $this->error('[App\Providers\AdminSectionsServiceProvider] not found'); |
36 | 36 | |
37 | 37 | return; |
38 | 38 | } |
39 | 39 | |
40 | 40 | foreach ($provider->sections() as $model => $section) { |
41 | - $this->callSilent('sleepingowl:section:make', ['name' => $section, 'model' => $model]); |
|
41 | + $this->callSilent('sleepingowl:section:make', [ 'name' => $section, 'model' => $model ]); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | $this->info('Sections generated successfully!'); |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | public function register() |
29 | 29 | { |
30 | - $this->app->singleton('sleeping_owl', function () { |
|
30 | + $this->app->singleton('sleeping_owl', function() { |
|
31 | 31 | return new Admin(); |
32 | 32 | }); |
33 | 33 | |
@@ -37,23 +37,23 @@ discard block |
||
37 | 37 | $this->registerWysiwyg(); |
38 | 38 | $this->registerAliases(); |
39 | 39 | |
40 | - $this->app->singleton(WidgetsRegistryInterface::class, function () { |
|
40 | + $this->app->singleton(WidgetsRegistryInterface::class, function() { |
|
41 | 41 | return new WidgetsRegistry($this->app); |
42 | 42 | }); |
43 | 43 | |
44 | - $this->app->booted(function () { |
|
45 | - $this->app[WidgetsRegistryInterface::class]->placeWidgets( |
|
46 | - $this->app[ViewFactory::class] |
|
44 | + $this->app->booted(function() { |
|
45 | + $this->app[ WidgetsRegistryInterface::class ]->placeWidgets( |
|
46 | + $this->app[ ViewFactory::class ] |
|
47 | 47 | ); |
48 | 48 | }); |
49 | 49 | |
50 | - $this->app->booted(function () { |
|
50 | + $this->app->booted(function() { |
|
51 | 51 | $this->registerCustomRoutes(); |
52 | 52 | $this->registerDefaultRoutes(); |
53 | 53 | $this->registerNavigationFile(); |
54 | 54 | }); |
55 | 55 | |
56 | - ModelConfigurationManager::setEventDispatcher($this->app['events']); |
|
56 | + ModelConfigurationManager::setEventDispatcher($this->app[ 'events' ]); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | */ |
64 | 64 | protected function getConfig($key) |
65 | 65 | { |
66 | - return $this->app['config']->get('sleeping_owl.'.$key); |
|
66 | + return $this->app[ 'config' ]->get('sleeping_owl.'.$key); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | protected function getBootstrapPath($path = null) |
75 | 75 | { |
76 | - if (! is_null($path)) { |
|
76 | + if (!is_null($path)) { |
|
77 | 77 | $path = DIRECTORY_SEPARATOR.$path; |
78 | 78 | } |
79 | 79 | |
@@ -84,14 +84,14 @@ discard block |
||
84 | 84 | { |
85 | 85 | $this->registerMessages(); |
86 | 86 | |
87 | - $this->app->singleton('sleeping_owl.template', function () { |
|
88 | - return $this->app['sleeping_owl']->template(); |
|
87 | + $this->app->singleton('sleeping_owl.template', function() { |
|
88 | + return $this->app[ 'sleeping_owl' ]->template(); |
|
89 | 89 | }); |
90 | 90 | |
91 | 91 | $this->registerBootstrap(); |
92 | 92 | |
93 | - $this->registerRoutes(function (Router $route) { |
|
94 | - $route->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function ($route) { |
|
93 | + $this->registerRoutes(function(Router $route) { |
|
94 | + $route->group([ 'as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers' ], function($route) { |
|
95 | 95 | $route->get('assets/admin.scripts', [ |
96 | 96 | 'as' => 'scripts', |
97 | 97 | 'uses' => 'AdminController@getScripts', |
@@ -109,10 +109,10 @@ discard block |
||
109 | 109 | 'warning' => \SleepingOwl\Admin\Widgets\Messages\WarningMessages::class, |
110 | 110 | ]; |
111 | 111 | foreach ($messageTypes as $messageType) { |
112 | - $this->app[WidgetsRegistryInterface::class]->registerWidget($messageType); |
|
112 | + $this->app[ WidgetsRegistryInterface::class ]->registerWidget($messageType); |
|
113 | 113 | } |
114 | 114 | |
115 | - $this->app->singleton('sleeping_owl.message', function () use ($messageTypes) { |
|
115 | + $this->app->singleton('sleeping_owl.message', function() use ($messageTypes) { |
|
116 | 116 | return new \SleepingOwl\Admin\Widgets\Messages\MessageStack($messageTypes); |
117 | 117 | }); |
118 | 118 | } |
@@ -126,14 +126,14 @@ discard block |
||
126 | 126 | $this->app->bind(\KodiComponents\Navigation\Contracts\PageInterface::class, \SleepingOwl\Admin\Navigation\Page::class); |
127 | 127 | $this->app->bind(\KodiComponents\Navigation\Contracts\BadgeInterface::class, \SleepingOwl\Admin\Navigation\Badge::class); |
128 | 128 | |
129 | - $this->app->singleton('sleeping_owl.navigation', function () { |
|
129 | + $this->app->singleton('sleeping_owl.navigation', function() { |
|
130 | 130 | return new \SleepingOwl\Admin\Navigation(); |
131 | 131 | }); |
132 | 132 | } |
133 | 133 | |
134 | 134 | protected function registerWysiwyg() |
135 | 135 | { |
136 | - $this->app->singleton('sleeping_owl.wysiwyg', function () { |
|
136 | + $this->app->singleton('sleeping_owl.wysiwyg', function() { |
|
137 | 137 | return new \SleepingOwl\Admin\Wysiwyg\Manager(); |
138 | 138 | }); |
139 | 139 | } |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | { |
146 | 146 | $directory = $this->getBootstrapPath(); |
147 | 147 | |
148 | - if (! is_dir($directory)) { |
|
148 | + if (!is_dir($directory)) { |
|
149 | 149 | return; |
150 | 150 | } |
151 | 151 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | ->notName('routes.php') |
156 | 156 | ->notName('navigation.php') |
157 | 157 | ->in($directory) |
158 | - ->sort(function ($a) { |
|
158 | + ->sort(function($a) { |
|
159 | 159 | return $a->getFilename() != 'bootstrap.php'; |
160 | 160 | }); |
161 | 161 | |
@@ -166,13 +166,13 @@ discard block |
||
166 | 166 | |
167 | 167 | protected function registerAliases() |
168 | 168 | { |
169 | - AliasLoader::getInstance(config('sleeping_owl.aliases', [])); |
|
169 | + AliasLoader::getInstance(config('sleeping_owl.aliases', [ ])); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | protected function registerCustomRoutes() |
173 | 173 | { |
174 | 174 | if (file_exists($file = $this->getBootstrapPath('routes.php'))) { |
175 | - $this->registerRoutes(function (Router $route) use ($file) { |
|
175 | + $this->registerRoutes(function(Router $route) use ($file) { |
|
176 | 176 | require $file; |
177 | 177 | }); |
178 | 178 | } |
@@ -180,15 +180,15 @@ discard block |
||
180 | 180 | |
181 | 181 | protected function registerDefaultRoutes() |
182 | 182 | { |
183 | - $this->registerRoutes(function (Router $router) { |
|
183 | + $this->registerRoutes(function(Router $router) { |
|
184 | 184 | $router->pattern('adminModelId', '[a-zA-Z0-9_-]+'); |
185 | 185 | |
186 | - $aliases = $this->app['sleeping_owl']->modelAliases(); |
|
186 | + $aliases = $this->app[ 'sleeping_owl' ]->modelAliases(); |
|
187 | 187 | |
188 | 188 | if (count($aliases) > 0) { |
189 | 189 | $router->pattern('adminModel', implode('|', $aliases)); |
190 | 190 | |
191 | - $this->app['router']->bind('adminModel', function ($model, \Illuminate\Routing\Route $route) use ($aliases) { |
|
191 | + $this->app[ 'router' ]->bind('adminModel', function($model, \Illuminate\Routing\Route $route) use ($aliases) { |
|
192 | 192 | $class = array_search($model, $aliases); |
193 | 193 | |
194 | 194 | if ($class === false) { |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | } |
197 | 197 | |
198 | 198 | /** @var ModelConfiguration $model */ |
199 | - $model = $this->app['sleeping_owl']->getModel($class); |
|
199 | + $model = $this->app[ 'sleeping_owl' ]->getModel($class); |
|
200 | 200 | |
201 | 201 | if ($model->hasCustomControllerClass() && $route->getActionName() !== 'Closure') { |
202 | 202 | list($controller, $action) = explode('@', $route->getActionName(), 2); |
@@ -225,10 +225,10 @@ discard block |
||
225 | 225 | */ |
226 | 226 | protected function registerRoutes(\Closure $callback) |
227 | 227 | { |
228 | - $this->app['router']->group([ |
|
228 | + $this->app[ 'router' ]->group([ |
|
229 | 229 | 'prefix' => $this->getConfig('url_prefix'), |
230 | 230 | 'middleware' => $this->getConfig('middleware'), |
231 | - ], function ($route) use ($callback) { |
|
231 | + ], function($route) use ($callback) { |
|
232 | 232 | call_user_func($callback, $route); |
233 | 233 | }); |
234 | 234 | } |
@@ -239,7 +239,7 @@ discard block |
||
239 | 239 | $items = include $navigation; |
240 | 240 | |
241 | 241 | if (is_array($items)) { |
242 | - $this->app['sleeping_owl.navigation']->setFromArray($items); |
|
242 | + $this->app[ 'sleeping_owl.navigation' ]->setFromArray($items); |
|
243 | 243 | } |
244 | 244 | } |
245 | 245 | } |