@@ -128,7 +128,7 @@ |
||
| 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); |
@@ -5,7 +5,7 @@ |
||
| 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 | |