Completed
Pull Request — master (#28)
by Tom
02:29
created
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.
src/League/ConfigServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.