Completed
Pull Request — master (#28)
by Tom
02:23
created
src/ConfigServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -81,10 +81,10 @@  discard block
 block discarded – undo
81 81
         $config = ($config instanceof Config) ? $config : new Config($config, $separator);
82 82
 
83 83
         $iterator = new ConfigIterator($config, $separator);
84
-        $prefix = $prefix ? $prefix . $separator : '';
84
+        $prefix = $prefix ? $prefix.$separator : '';
85 85
 
86 86
         foreach ($iterator as $key => $value) {
87
-            $this->config[$prefix . $key] = $value;
87
+            $this->config[$prefix.$key] = $value;
88 88
         }
89 89
 
90 90
         $this->subProviders = $subProviders;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     public function register()
100 100
     {
101 101
         foreach ($this->config as $key => $value) {
102
-            $this->getContainer()->add($key, function () use ($value) {
102
+            $this->getContainer()->add($key, function() use ($value) {
103 103
                 return $value;
104 104
             });
105 105
         }
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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];
Please login to merge, or discard this patch.