@@ -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); |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | public function getPersistence() |
50 | 50 | { |
51 | - $persistence = new RelationalDatabase($this->getAdapter(), $this->contextFile ); |
|
51 | + $persistence = new RelationalDatabase($this->getAdapter(), $this->contextFile); |
|
52 | 52 | return $persistence; |
53 | 53 | } |
54 | 54 |
@@ -17,7 +17,7 @@ |
||
17 | 17 | * @param AbstractContextConfigurationFile $contextConfigurationFile |
18 | 18 | */ |
19 | 19 | |
20 | - public function __construct(\SplFileInfo $baseDirectory, \SimpleXMLElement $config,AbstractContextConfigurationFile $contextConfigurationFile); |
|
20 | + public function __construct(\SplFileInfo $baseDirectory, \SimpleXMLElement $config, AbstractContextConfigurationFile $contextConfigurationFile); |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @return Builder |