Passed
Branch dev (18de0d)
by Sergey
06:54
created
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 namespace Flextype;
6 6
 
7
-$app->group('/' . $admin_route, function () use ($app) : void {
7
+$app->group('/' . $admin_route, function() use ($app) : void {
8 8
 
9 9
     // FieldsetsController
10 10
     $app->get('/fieldsets', 'FieldsetsController:index')->setName('admin.fieldsets.index');
Please login to merge, or discard this patch.
dependencies.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@
 block discarded – undo
16 16
 use function Flextype\Component\I18n\__;
17 17
 
18 18
 // Add Admin Navigation
19
-$flextype->registry->set('plugins.admin.settings.navigation.extends.fieldsets', ['title' => __('form_admin_fieldsets'),'icon' => 'far fa-list-alt', 'link' => $flextype->router->pathFor('admin.fieldsets.index')]);
19
+$flextype->registry->set('plugins.admin.settings.navigation.extends.fieldsets', ['title' => __('form_admin_fieldsets'), 'icon' => 'far fa-list-alt', 'link' => $flextype->router->pathFor('admin.fieldsets.index')]);
20 20
 
21 21
 // Add FieldsetsController
22
-$flextype['FieldsetsController'] = static function ($container) {
22
+$flextype['FieldsetsController'] = static function($container) {
23 23
     return new FieldsetsController($container);
24 24
 };
Please login to merge, or discard this patch.
bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 /**
24 24
  * Ensure vendor libraries exist
25 25
  */
26
-! is_file($form_admin_autoload = __DIR__ . '/vendor/autoload.php') and exit('Please run: <i>composer install</i> form admin plugin');
26
+!is_file($form_admin_autoload = __DIR__ . '/vendor/autoload.php') and exit('Please run: <i>composer install</i> form admin plugin');
27 27
 
28 28
 /**
29 29
  * Register The Auto Loader
Please login to merge, or discard this patch.