Passed
Push — develop ( 6c7de4...2b301a )
by Kevin
05:45
created
lib/Config/Storage/RelationalDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         $table->addColumn(new Text('value'));
129 129
         $table->addColumn(new Varchar('context', 255));
130 130
         $table->addConstraint(
131
-            new UniqueKey(['path','context'], 'configuration_uniqueness_index')
131
+            new UniqueKey(['path', 'context'], 'configuration_uniqueness_index')
132 132
         );
133 133
 
134 134
         $sql = new Sql($this->adapter);
Please login to merge, or discard this patch.
lib/Config/Repository/ConfigInterface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 interface ConfigInterface
6 6
 {
7 7
 
8
-     const ALLOWED_TRUES = [
8
+        const ALLOWED_TRUES = [
9 9
         true, 'true', 1, '1', 'on', 'yes'
10 10
     ];
11 11
 
Please login to merge, or discard this patch.