Passed
Branch nightly (b3725c)
by Fariz
02:01
created
config/cache.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
  * @link		https://stupidlysimple.github.io/
10 10
  */
11 11
 return [
12
-  'enabled'   => false,
13
-  'settings'  => [
12
+    'enabled'   => false,
13
+    'settings'  => [
14 14
     /*
15 15
      * Default storage
16 16
      * if you set this storage => 'files', then $cache = phpFastCache(); <-- will be files cache
@@ -68,5 +68,5 @@  discard block
 block discarded – undo
68 68
      * Use 1 as normal traditional, 2 = phpfastcache fastest as default, 3 = phpfastcache memory stable
69 69
      */
70 70
     'caching_method' => 2,
71
-  ],
71
+    ],
72 72
 ];
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
      * Default Memcache Server for all $cache = phpFastCache('memcache');
43 43
      */
44 44
     'server'        => [
45
-            ['127.0.0.1', 11211, 1],
45
+            [ '127.0.0.1', 11211, 1 ],
46 46
     ],
47 47
 
48 48
     'memcache'      => [
49
-            ['127.0.0.1', 11211, 1],
49
+            [ '127.0.0.1', 11211, 1 ],
50 50
     ],
51 51
 
52 52
     'redis'         => [
Please login to merge, or discard this patch.
config/database.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
  */
11 11
 return
12 12
 [
13
-  'enabled'   => true,
14
-  'settings'  => [
13
+    'enabled'   => true,
14
+    'settings'  => [
15 15
     'host'      => 'localhost',
16 16
     'driver'    => 'mysql',
17 17
     'database'  => 'stupidlysimple',
@@ -20,5 +20,5 @@  discard block
 block discarded – undo
20 20
     'charset'   => 'utf8',
21 21
     'collation' => 'utf8_unicode_ci',
22 22
     'prefix'    => '',
23
-  ],
23
+    ],
24 24
 ];
Please login to merge, or discard this patch.
config/timetrackr.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,5 +10,5 @@
 block discarded – undo
10 10
  */
11 11
 return
12 12
 [
13
-  'timezone' => 'Asia/Kuala_Lumpur',
13
+    'timezone' => 'Asia/Kuala_Lumpur',
14 14
 ];
Please login to merge, or discard this patch.
resources/views/routing.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 -->
7 7
 <html>
8 8
 <?php
9
-$data = ['title' => 'StupidlySimple PHP | Service'];
9
+$data = [ 'title' => 'StupidlySimple PHP | Service' ];
10 10
 Core\Viewer::file('layouts/head', $data);
11 11
 ?>
12 12
 <body>
Please login to merge, or discard this patch.
resources/views/model.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 -->
7 7
 <html>
8 8
 <?php
9
-$data = ['title' => 'StupidlySimple PHP | Service'];
9
+$data = [ 'title' => 'StupidlySimple PHP | Service' ];
10 10
 Core\Viewer::file('layouts/head', $data);
11 11
 ?>
12 12
 <body>
Please login to merge, or discard this patch.
resources/views/controller.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 -->
7 7
 <html>
8 8
 <?php
9
-$data = ['title' => 'StupidlySimple | Controller'];
9
+$data = [ 'title' => 'StupidlySimple | Controller' ];
10 10
 Core\Viewer::file('layouts/head', $data); ?>
11 11
 <body>
12 12
 <!-- Wrapper -->
Please login to merge, or discard this patch.
resources/views/service.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 -->
7 7
 <html>
8 8
 <?php
9
-$data = ['title' => 'StupidlySimple PHP | Service'];
9
+$data = [ 'title' => 'StupidlySimple PHP | Service' ];
10 10
 Core\Viewer::file('layouts/head', $data); ?>
11 11
 <body>
12 12
 <!-- Wrapper -->
Please login to merge, or discard this patch.
resources/views/admin/home.tpl.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,12 +5,12 @@
 block discarded – undo
5 5
 	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
6 6
 -->
7 7
 <html>
8
-<?php Core\Viewer::file('../layouts/head', $data = ['title' => 'StupidlySimple PHP | Home']); ?>
8
+<?php Core\Viewer::file('../layouts/head', $data = [ 'title' => 'StupidlySimple PHP | Home' ]); ?>
9 9
 <body>
10 10
 <!-- Wrapper -->
11 11
 <div id="wrapper">
12 12
 
13
-    <?php Viewer::file('layouts/top', $top_data = ['is_admin' => true]); ?>
13
+    <?php Viewer::file('layouts/top', $top_data = [ 'is_admin' => true ]); ?>
14 14
 
15 15
     <?php Viewer::file('layouts/menu') ?>
16 16
 
Please login to merge, or discard this patch.
resources/views/home.tpl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 -->
7 7
 <html>
8 8
 <?php
9
-$data = ['title' => 'StupidlySimple PHP | Home'];
9
+$data = [ 'title' => 'StupidlySimple PHP | Home' ];
10 10
 Viewer::file('layouts/head', $data);
11 11
 ?>
12 12
 <body>
Please login to merge, or discard this patch.