Passed
Pull Request — master (#1)
by Peter
02:51
created
src/Events/Listeners/NavigationBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $dropdown[] = $this->createBlockLayoutItem();
49 49
         $dropdown[] = $this->createContentListItem();
50 50
 
51
-        $item   = $this->createPageItem();
51
+        $item = $this->createPageItem();
52 52
         $item->setIntent(Item::INTENT_DROPDOWN);
53 53
         $item->setAttribute(Html5::ATTR_ID, 'nav-pages');
54 54
         $item[0]->setAttribute(Html5::ATTR_HREF, 'javascript:void(0);');
Please login to merge, or discard this patch.
src/Http/Controllers/Admin/Grid/ContentList.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     const ENTITY_SINGULAR = 'contentList';
19 19
     const ENTITY_PLURAL   = 'lists';
20 20
 
21
-    const ENTITY_TITLE_PLURAL   = 'website:contentLists';
21
+    const ENTITY_TITLE_PLURAL = 'website:contentLists';
22 22
 
23 23
     /** @var string */
24 24
     protected $resource = 'lists';
Please login to merge, or discard this patch.
admin-routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
  */
20 20
 $router->group(
21 21
     ['controllerNamespace' => 'AbterPhp\Website\Http\Controllers'],
22
-    function (Router $router) {
22
+    function(Router $router) {
23 23
         $router->group(
24 24
             [
25 25
                 'path'       => RoutesConfig::getAdminBasePath(),
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
                     Authentication::class,
28 28
                 ],
29 29
             ],
30
-            function (Router $router) {
30
+            function(Router $router) {
31 31
                 $entities = [
32 32
                     'blocks'         => 'Block',
33 33
                     'blocklayouts'   => 'BlockLayout',
Please login to merge, or discard this patch.