@@ -25,14 +25,14 @@ |
||
| 25 | 25 | private function assertFileExists() |
| 26 | 26 | { |
| 27 | 27 | if (!file_exists($this->filename)) { |
| 28 | - throw new FileNotFoundException($this->filename . ' does not exist'); |
|
| 28 | + throw new FileNotFoundException($this->filename.' does not exist'); |
|
| 29 | 29 | } |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | private function assertConfigIsValid($config) |
| 33 | 33 | { |
| 34 | 34 | if (!is_array($config)) { |
| 35 | - throw new InvalidConfigException($this->filename . ' does not return a PHP array'); |
|
| 35 | + throw new InvalidConfigException($this->filename.' does not return a PHP array'); |
|
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | } |
@@ -2,9 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace TomPHP\ConfigServiceProvider\League; |
| 4 | 4 | |
| 5 | -use TomPHP\ConfigServiceProvider\ContainerConfigurator; |
|
| 6 | 5 | use TomPHP\ConfigServiceProvider\Config; |
| 7 | -use League\Container\ServiceProvider\AbstractServiceProvider; |
|
| 6 | +use TomPHP\ConfigServiceProvider\ContainerConfigurator; |
|
| 8 | 7 | |
| 9 | 8 | final class Configurator implements ContainerConfigurator |
| 10 | 9 | { |
@@ -19,7 +19,7 @@ |
||
| 19 | 19 | /** |
| 20 | 20 | * @internal |
| 21 | 21 | * |
| 22 | - * @return ServiceProviderInterface |
|
| 22 | + * @return ApplicationConfigServiceProvider |
|
| 23 | 23 | */ |
| 24 | 24 | public function getServiceProvider() |
| 25 | 25 | { |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use League\Container\Definition\ClassDefinition; |
| 6 | 6 | use League\Container\ServiceProvider\AbstractServiceProvider; |
| 7 | -use League\Container\ServiceProvider\BootableServiceProviderInterface; |
|
| 8 | 7 | use TomPHP\ConfigServiceProvider\Exception\NotClassDefinitionException; |
| 9 | 8 | |
| 10 | 9 | final class DIConfigServiceProvider extends AbstractServiceProvider |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | public function getKeys() |
| 26 | 26 | { |
| 27 | 27 | return array_map( |
| 28 | - function (ServiceDefinition $definition) { |
|
| 28 | + function(ServiceDefinition $definition) { |
|
| 29 | 29 | return $definition->getKey(); |
| 30 | 30 | }, |
| 31 | 31 | $this->config |
@@ -22,7 +22,7 @@ |
||
| 22 | 22 | /** |
| 23 | 23 | * @api |
| 24 | 24 | * |
| 25 | - * @param array $patterns |
|
| 25 | + * @param string[] $patterns |
|
| 26 | 26 | * @param string $separator |
| 27 | 27 | * |
| 28 | 28 | * @return self |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | if (empty($files)) { |
| 36 | 36 | throw new NoMatchingFilesException( |
| 37 | - 'No files found matching patterns: ' . implode(', ', $patterns) |
|
| 37 | + 'No files found matching patterns: '.implode(', ', $patterns) |
|
| 38 | 38 | ); |
| 39 | 39 | } |
| 40 | 40 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | ]); |
| 45 | 45 | |
| 46 | 46 | $configs = array_map( |
| 47 | - function ($filename) use ($factory) { |
|
| 47 | + function($filename) use ($factory) { |
|
| 48 | 48 | $reader = $factory->create($filename); |
| 49 | 49 | return $reader->read($filename); |
| 50 | 50 | }, |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | |
| 122 | 122 | foreach ($path as $node) { |
| 123 | 123 | if (!is_array($pointer) || !array_key_exists($node, $pointer)) { |
| 124 | - throw new EntryDoesNotExistException("No entry found for " . implode($this->separator, $path)); |
|
| 124 | + throw new EntryDoesNotExistException("No entry found for ".implode($this->separator, $path)); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | $pointer = &$pointer[$node]; |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | /** |
| 32 | 32 | * @api |
| 33 | 33 | * |
| 34 | - * @param array|ApplicationConfig $config |
|
| 34 | + * @param ApplicationConfig $config |
|
| 35 | 35 | * @param array $settings |
| 36 | 36 | * |
| 37 | 37 | * @return ConfigServiceProvider |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | /** |
| 146 | 146 | * @param string $name |
| 147 | 147 | * @param array $settings |
| 148 | - * @param mixed $default |
|
| 148 | + * @param string $default |
|
| 149 | 149 | * |
| 150 | 150 | * @return mixed |
| 151 | 151 | */ |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | $this->prefix = $prefix; |
| 28 | 28 | $this->config = $config; |
| 29 | 29 | $this->provides = array_map( |
| 30 | - function ($key) { |
|
| 31 | - return $this->keyPrefix() . $key; |
|
| 30 | + function($key) { |
|
| 31 | + return $this->keyPrefix().$key; |
|
| 32 | 32 | }, |
| 33 | 33 | $config->getKeys() |
| 34 | 34 | ); |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $prefix = $this->keyPrefix(); |
| 42 | 42 | |
| 43 | 43 | foreach ($iterator as $key => $value) { |
| 44 | - $this->getContainer()->share($prefix . $key, function () use ($value) { |
|
| 44 | + $this->getContainer()->share($prefix.$key, function() use ($value) { |
|
| 45 | 45 | return $value; |
| 46 | 46 | }); |
| 47 | 47 | } |
@@ -56,6 +56,6 @@ discard block |
||
| 56 | 56 | return ''; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - return $this->prefix . $this->config->getSeparator(); |
|
| 59 | + return $this->prefix.$this->config->getSeparator(); |
|
| 60 | 60 | } |
| 61 | 61 | } |
@@ -35,8 +35,6 @@ |
||
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | - * @param string $interface |
|
| 39 | - * @param array $config |
|
| 40 | 38 | */ |
| 41 | 39 | private function configureInterface(InflectorDefinition $definition) |
| 42 | 40 | { |