Passed
Push — master ( 4ac827...12a6ad )
by Peter
02:27
created
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
     const ROUTING_PATH = 'lists';
24 24
 
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
                     'block-layouts'   => 'BlockLayout',
Please login to merge, or discard this patch.
api-routes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
  */
16 16
 $router->group(
17 17
     ['controllerNamespace' => 'AbterPhp\Website\Http\Controllers'],
18
-    function (Router $router) {
18
+    function(Router $router) {
19 19
         $router->group(
20 20
             [
21 21
                 'path' => RoutesConfig::getApiBasePath(),
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
                     Api::class,
24 24
                 ],
25 25
             ],
26
-            function (Router $router) {
26
+            function(Router $router) {
27 27
                 $entities = [
28 28
                     'pages'          => 'Page',
29 29
                     'page-layouts'    => 'PageLayout',
Please login to merge, or discard this patch.