@@ -127,7 +127,7 @@ |
||
127 | 127 | $table->addColumn(new Text('value')); |
128 | 128 | $table->addColumn(new Varchar('context', 255)); |
129 | 129 | $table->addConstraint( |
130 | - new UniqueKey(['path','context'], 'configuration_uniqueness_index') |
|
130 | + new UniqueKey(['path','context'], 'configuration_uniqueness_index') |
|
131 | 131 | ); |
132 | 132 | |
133 | 133 | $sql = new Sql($this->adapter); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $resultSet = $statement->execute(); |
92 | 92 | $this->data[$context] = []; |
93 | 93 | foreach ($resultSet as $result) { |
94 | - $this->data[$context][$result['path']] = $result['value']; |
|
94 | + $this->data[$context][$result['path']] = $result['value']; |
|
95 | 95 | } |
96 | 96 | } |
97 | 97 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $table->addColumn(new Text('value')); |
128 | 128 | $table->addColumn(new Varchar('context', 255)); |
129 | 129 | $table->addConstraint( |
130 | - new UniqueKey(['path','context'], 'configuration_uniqueness_index') |
|
130 | + new UniqueKey(['path', 'context'], 'configuration_uniqueness_index') |
|
131 | 131 | ); |
132 | 132 | |
133 | 133 | $sql = new Sql($this->adapter); |
@@ -7,7 +7,7 @@ |
||
7 | 7 | |
8 | 8 | public function toXml() |
9 | 9 | { |
10 | - $file = $this->getFile(); |
|
10 | + $file = $this->getFile(); |
|
11 | 11 | $results = include $file; |
12 | 12 | $config = new \SimpleXMLElement('<configuration />'); |
13 | 13 | foreach ($results as $section => $sectionData) { |
@@ -5,7 +5,6 @@ |
||
5 | 5 | use Magium\Configuration\Config\Builder; |
6 | 6 | use Magium\Configuration\Config\BuilderFactory; |
7 | 7 | use Magium\Configuration\Config\BuilderFactoryInterface; |
8 | -use Magium\Configuration\Config\InvalidConfigurationLocationException; |
|
9 | 8 | use Magium\Configuration\Config\MissingConfigurationException; |
10 | 9 | use Magium\Configuration\File\Context\AbstractContextConfigurationFile; |
11 | 10 | use Magium\Configuration\Manager\CacheFactory; |
@@ -106,7 +106,7 @@ |
||
106 | 106 | |
107 | 107 | public function current() |
108 | 108 | { |
109 | - $current = current($this->files); |
|
109 | + $current = current($this->files); |
|
110 | 110 | $this->checkFileLocation($current); |
111 | 111 | return $current; |
112 | 112 | } |