Passed
Push — dev ( 0b8575...5e02a1 )
by Sergey
05:43 queued 02:55
created
dependencies.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 
21 21
 // Add Admin Navigation
22 22
 flextype('registry')->set('plugins.admin.settings.navigation.content.entries', ['title' => __('admin_entries'), 'icon' => ['name' => 'database', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.entries.index')]);
23
-flextype('registry')->set('plugins.admin.settings.navigation.extends.plugins', ['title' => __('admin_plugins'),'icon' => ['name' => 'plug', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.plugins.index')]);
24
-flextype('registry')->set('plugins.admin.settings.navigation.system.tools', ['title' => __('admin_tools'),'icon' => ['name' => 'toolbox', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.tools.index')]);
25
-flextype('registry')->set('plugins.admin.settings.navigation.system.api', ['title' => __('admin_api'),'icon' => ['name' => 'network-wired', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.api.index')]);
23
+flextype('registry')->set('plugins.admin.settings.navigation.extends.plugins', ['title' => __('admin_plugins'), 'icon' => ['name' => 'plug', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.plugins.index')]);
24
+flextype('registry')->set('plugins.admin.settings.navigation.system.tools', ['title' => __('admin_tools'), 'icon' => ['name' => 'toolbox', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.tools.index')]);
25
+flextype('registry')->set('plugins.admin.settings.navigation.system.api', ['title' => __('admin_api'), 'icon' => ['name' => 'network-wired', 'set' => 'fontawesome|solid'], 'link' => flextype('router')->pathFor('admin.api.index')]);
26 26
 
27 27
 /**
28 28
  * Add Assets
Please login to merge, or discard this patch.
app/Controllers/ApiController.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -33,30 +33,30 @@
 block discarded – undo
33 33
                 'menu_item' => 'api',
34 34
                 'api_list' => [
35 35
                                 'entries' => [
36
-                                  'title' => __('admin_entries'),
37
-                                  'icon' => ['name' => 'database', 'set' => 'fontawesome|solid'],
36
+                                    'title' => __('admin_entries'),
37
+                                    'icon' => ['name' => 'database', 'set' => 'fontawesome|solid'],
38 38
                                 ],
39 39
                                 'registry' => [
40
-                                  'title' => __('admin_registry'),
41
-                                  'icon' => ['name' => 'archive', 'set' => 'fontawesome|solid'],
40
+                                    'title' => __('admin_registry'),
41
+                                    'icon' => ['name' => 'archive', 'set' => 'fontawesome|solid'],
42 42
                                 ],
43 43
                                 'images' => [
44
-                                  'title' => __('admin_images'),
45
-                                  'icon' => ['name' => 'images', 'set' => 'fontawesome|solid'],
44
+                                    'title' => __('admin_images'),
45
+                                    'icon' => ['name' => 'images', 'set' => 'fontawesome|solid'],
46 46
                                 ],
47 47
                                 'files' => [
48
-                                  'title' => __('admin_files'),
49
-                                  'icon' => ['name' => 'file', 'set' => 'fontawesome|solid'],
48
+                                    'title' => __('admin_files'),
49
+                                    'icon' => ['name' => 'file', 'set' => 'fontawesome|solid'],
50 50
                                 ],
51 51
                                 'folders' => [
52
-                                  'title' => __('admin_folders'),
53
-                                  'icon' => ['name' => 'folder', 'set' => 'fontawesome|solid'],
52
+                                    'title' => __('admin_folders'),
53
+                                    'icon' => ['name' => 'folder', 'set' => 'fontawesome|solid'],
54 54
                                 ],
55 55
                                 'access' => [
56
-                                  'title' => __('admin_access'),
57
-                                  'icon' => ['name' => 'user-shield', 'set' => 'fontawesome|solid'],
56
+                                    'title' => __('admin_access'),
57
+                                    'icon' => ['name' => 'user-shield', 'set' => 'fontawesome|solid'],
58
+                                ],
58 59
                                 ],
59
-                               ],
60 60
                 'links' =>  [
61 61
                     'api' => [
62 62
                         'link' => flextype('router')->pathFor('admin.api.index'),
Please login to merge, or discard this patch.