@@ -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);  | 
                                                        
@@ -3,13 +3,9 @@  | 
                                                    ||
| 3 | 3 | namespace Magium\Configuration\Console\Command;  | 
                                                        
| 4 | 4 | |
| 5 | 5 | use Magium\Configuration\Config\ConfigurationRepository;  | 
                                                        
| 6 | -use Magium\Configuration\Config\ConfigInterface;  | 
                                                        |
| 7 | -use Magium\Configuration\MagiumConfigurationFactory;  | 
                                                        |
| 8 | -use Magium\Configuration\MagiumConfigurationFactoryInterface;  | 
                                                        |
| 9 | 6 | use Symfony\Component\Console\Command\Command;  | 
                                                        
| 10 | 7 | use Symfony\Component\Console\Input\InputArgument;  | 
                                                        
| 11 | 8 | use Symfony\Component\Console\Input\InputInterface;  | 
                                                        
| 12 | -use Symfony\Component\Console\Input\InputOption;  | 
                                                        |
| 13 | 9 | use Symfony\Component\Console\Output\OutputInterface;  | 
                                                        
| 14 | 10 | |
| 15 | 11 | class ConfigurationSet extends Command  | 
                                                        
@@ -2,11 +2,7 @@  | 
                                                    ||
| 2 | 2 | |
| 3 | 3 | namespace Magium\Configuration\Console\Command;  | 
                                                        
| 4 | 4 | |
| 5 | -use Magium\Configuration\Config\ConfigurationRepository;  | 
                                                        |
| 6 | -use Magium\Configuration\Config\InvalidContextException;  | 
                                                        |
| 7 | -use Magium\Configuration\MagiumConfigurationFactory;  | 
                                                        |
| 8 | 5 | use Symfony\Component\Console\Command\Command;  | 
                                                        
| 9 | -use Symfony\Component\Console\Input\InputArgument;  | 
                                                        |
| 10 | 6 | use Symfony\Component\Console\Input\InputInterface;  | 
                                                        
| 11 | 7 | use Symfony\Component\Console\Output\OutputInterface;  | 
                                                        
| 12 | 8 | |
@@ -5,7 +5,6 @@  | 
                                                    ||
| 5 | 5 | use Magium\Configuration\Config\InvalidConfigurationLocationException;  | 
                                                        
| 6 | 6 | use Magium\Configuration\Config\InvalidDirectoryException;  | 
                                                        
| 7 | 7 | use Magium\Configuration\File\AdapterInterface;  | 
                                                        
| 8 | -use Magium\Configuration\File\InvalidFileException;  | 
                                                        |
| 9 | 8 | |
| 10 | 9 | class ConfigurationFileRepository implements \ArrayAccess, \Iterator, \Countable  | 
                                                        
| 11 | 10 |  { |