Passed
Push — main ( 950f85...4bfa5d )
by Greg
07:33
created
resources/lang/en-US/messages.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-return array (
3
+return array(
4 4
   ' but the details are unknown' => ' but the details are unknown',
5 5
   '%H:%i:%s' => '%g:%i:%s %a',
6 6
   '%j %F %Y' => '%F %j, %Y',
Please login to merge, or discard this patch.
app/Cli/Commands/ConfigIni.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@
 block discarded – undo
81 81
             'dbcert'       => $this->stringOption(input: $input, name: 'dbcert'),
82 82
             'dbca'         => $this->stringOption(input: $input, name: 'dbca'),
83 83
             'dbverify'     => $this->boolOption(input: $input, name: 'dbverify') ? '1' : '0',
84
-            'tblpfx'       => $this->stringOption(input: $input, name: 'tblpfx'),
85
-            'base_url'     => rtrim(string: $this->stringOption(input: $input, name: 'base-url'), characters: '/'),
86
-            'rewrite_urls' => $this->boolOption(input: $input, name: 'rewrite-urls') ? '1' : '0',
87
-            'block_asn'    => $this->stringOption(input: $input, name: 'block-asn'),
84
+            'tblpfx'       => $this->stringOption(input : $input, name : 'tblpfx'),
85
+            'base_url'     => rtrim(string : $this->stringOption(input : $input, name : 'base-url'), characters : '/'),
86
+            'rewrite_urls' => $this->boolOption(input : $input, name : 'rewrite-urls') ? '1' : '0',
87
+            'block_asn'    => $this->stringOption(input : $input, name : 'block-asn'),
88 88
         ];
89 89
 
90 90
         foreach ($config as $key => $value) {
Please login to merge, or discard this patch.