Passed
Branch master (3755b9)
by Michele
05:30 queued 02:27
created
config/config.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -5,31 +5,31 @@
 block discarded – undo
5 5
 $COOKIE_LIFETIME_UM = 'months';
6 6
 
7 7
 return [
8
-	/*
8
+    /*
9 9
 	 * Use this setting to enable the cookie consent dialog.
10 10
 	 */
11
-	'enabled' => env('COOKIE_CONSENT_ENABLED', true),
11
+    'enabled' => env('COOKIE_CONSENT_ENABLED', true),
12 12
 
13
-	/*
13
+    /*
14 14
 	 * The name of the cookie in which we store if the user
15 15
 	 * has agreed to accept the conditions.
16 16
 	 */
17
-	'cookie_name' => $COOKIE_CONSENT_NAME,
17
+    'cookie_name' => $COOKIE_CONSENT_NAME,
18 18
 
19
-	/*
19
+    /*
20 20
 	 * Set the cookie duration in days.
21 21
 	 */
22
-	'cookie_lifetime' => $COOKIE_LIFETIME,
22
+    'cookie_lifetime' => $COOKIE_LIFETIME,
23 23
 
24 24
     /*
25 25
      * 4 types of cookie
26 26
      */
27
-	'cookie_types' => [
28
-		'necessary' => $COOKIE_CONSENT_NAME.'_necessary',
29
-		'statistics' => $COOKIE_CONSENT_NAME.'_statistics',
27
+    'cookie_types' => [
28
+        'necessary' => $COOKIE_CONSENT_NAME.'_necessary',
29
+        'statistics' => $COOKIE_CONSENT_NAME.'_statistics',
30 30
         'marketing' => $COOKIE_CONSENT_NAME.'_marketing',
31
-		'functional' => $COOKIE_CONSENT_NAME.'_functional',
32
-	],
31
+        'functional' => $COOKIE_CONSENT_NAME.'_functional',
32
+    ],
33 33
 
34 34
     /*
35 35
      * All cookies by type
Please login to merge, or discard this patch.