diff --git a/README.md b/README.md index e079c07..d5a2089 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Then you can fetch the value of the configuration option `c` via: ``` $value = $config->get('a.b.c'); ``` -[dflydev/dot-access-data](https://github.com/dflydev/dot-access-data) is levereaged to provide this capability. +[dflydev/dot-access-data](https://github.com/dflydev/dot-access-data) is leveraged to provide this capability. ## External Examples diff --git a/src/Command/InjectConfigForCommand.php b/src/Inject/ConfigForCommand.php similarity index 93% rename from src/Command/InjectConfigForCommand.php rename to src/Inject/ConfigForCommand.php index 77c4d76..c72bcf2 100644 --- a/src/Command/InjectConfigForCommand.php +++ b/src/Inject/ConfigForCommand.php @@ -1,5 +1,5 @@ config); + $configInjector = new ConfigForCommand($this->config); $output = new BufferedOutput(); $application = new Application('TestApplication', '0.0.0'); diff --git a/tests/ApplyConfigTest.php b/tests/ConfigForSettersTest.php similarity index 91% rename from tests/ApplyConfigTest.php rename to tests/ConfigForSettersTest.php index 90dd1d3..422b0a0 100644 --- a/tests/ApplyConfigTest.php +++ b/tests/ConfigForSettersTest.php @@ -1,10 +1,10 @@