Passed
Push — master ( c86e8c...1b1f16 )
by Mihail
04:54
created
Private/Config/Default.php 1 patch
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -1,42 +1,42 @@
 block discarded – undo
1 1
 <?php return [
2
-	'baseProto' => 'http',
3
-	'baseDomain' => 'ffcms.app',
4
-	'basePath' => '/',
5
-	'passwordSalt' => '$2a$07$2NJgci5A7NI9m2J9Ii92a1I3DiH6$',
6
-	'timezone' => 'Europe/Moscow',
7
-	'adminEmail' => '[email protected]',
8
-	'debug' => [
9
-		'all' => false,
10
-		'cookie' => [
11
-			'key' => 'fdebug_jepP2',
12
-			'value' => 'pOH1Kj18fHN7mk9a81F32eJbl9d3AeDjLC1g7poPGE22Ii6pI68P5B6O5hKMofnLPB0lFdpo2a2o78NhedjGA'
13
-		]
14
-	],
15
-	'userCron' => false,
16
-	'theme' => [
17
-		'Front' => 'default',
18
-		'Admin' => 'default'
19
-	],
20
-	'database' => [
21
-		'driver' => 'mysql',
22
-		'host' => '127.0.0.1',
23
-		'username' => 'mysql',
24
-		'password' => 'mysql',
25
-		'database' => 'ffcms',
26
-		'prefix' => 'ffcms_',
27
-		'charset' => 'utf8',
28
-		'collation' => 'utf8_unicode_ci'
29
-	],
2
+    'baseProto' => 'http',
3
+    'baseDomain' => 'ffcms.app',
4
+    'basePath' => '/',
5
+    'passwordSalt' => '$2a$07$2NJgci5A7NI9m2J9Ii92a1I3DiH6$',
6
+    'timezone' => 'Europe/Moscow',
7
+    'adminEmail' => '[email protected]',
8
+    'debug' => [
9
+        'all' => false,
10
+        'cookie' => [
11
+            'key' => 'fdebug_jepP2',
12
+            'value' => 'pOH1Kj18fHN7mk9a81F32eJbl9d3AeDjLC1g7poPGE22Ii6pI68P5B6O5hKMofnLPB0lFdpo2a2o78NhedjGA'
13
+        ]
14
+    ],
15
+    'userCron' => false,
16
+    'theme' => [
17
+        'Front' => 'default',
18
+        'Admin' => 'default'
19
+    ],
20
+    'database' => [
21
+        'driver' => 'mysql',
22
+        'host' => '127.0.0.1',
23
+        'username' => 'mysql',
24
+        'password' => 'mysql',
25
+        'database' => 'ffcms',
26
+        'prefix' => 'ffcms_',
27
+        'charset' => 'utf8',
28
+        'collation' => 'utf8_unicode_ci'
29
+    ],
30 30
     'testSuite' => false,
31
-	'baseLanguage' => 'en',
32
-	'multiLanguage' => true,
33
-	'singleLanguage' => 'en',
34
-	'languages' => [
35
-		'en',
36
-		'ru'
37
-	],
38
-	'languageDomainAlias' => false,
39
-	'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com',
40
-	'gaTrackId' => false,
41
-	'trustedProxy' => false
31
+    'baseLanguage' => 'en',
32
+    'multiLanguage' => true,
33
+    'singleLanguage' => 'en',
34
+    'languages' => [
35
+        'en',
36
+        'ru'
37
+    ],
38
+    'languageDomainAlias' => false,
39
+    'gaClientId' => '570934480862-son8fr180fr6u6tlt9iqpjpoesngro0o.apps.googleusercontent.com',
40
+    'gaTrackId' => false,
41
+    'trustedProxy' => false
42 42
 ];
43 43
\ No newline at end of file
Please login to merge, or discard this patch.
Private/Config/Cron.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php return [
2
-	'instances' => [
3
-		'Apps\Controller\Front\Content::buildSitemapSchedule' => 3600,
4
-		'Apps\Controller\Front\Profile::buildSitemapSchedule' => 10800,
5
-		'Apps\Controller\Front\Profile::cleanupTablesSchedule' => 86400
6
-	]
2
+    'instances' => [
3
+        'Apps\Controller\Front\Content::buildSitemapSchedule' => 3600,
4
+        'Apps\Controller\Front\Profile::buildSitemapSchedule' => 10800,
5
+        'Apps\Controller\Front\Profile::cleanupTablesSchedule' => 86400
6
+    ]
7 7
 ];
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
Widgets/Front/Newcontent/Newcontent.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
         
77 77
         // render view
78 78
         return App::$View->render($this->tpl, [
79
-           'records' => $query
79
+            'records' => $query
80 80
         ]);
81 81
     }
82 82
     
Please login to merge, or discard this patch.