Passed
Push — develop ( 5ffe5c...32af0c )
by nguereza
04:03
created
src/Config/AbstractConfiguration.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * Class AbstractConfiguration
57 57
  * @package Platine\Stdlib\Config
58 58
  */
59
-abstract class AbstractConfiguration implements ConfigurationInterface
60
-{
59
+abstract class AbstractConfiguration implements ConfigurationInterface {
61 60
 
62 61
     /**
63 62
      * The raw configuration array
@@ -68,16 +67,14 @@  discard block
 block discarded – undo
68 67
     /**
69 68
      * {@inheritedoc}
70 69
      */
71
-    public function __construct(array $config = [])
72
-    {
70
+    public function __construct(array $config = []) {
73 71
         $this->load($config);
74 72
     }
75 73
 
76 74
     /**
77 75
      * {@inheritedoc}
78 76
      */
79
-    public function get(string $name)
80
-    {
77
+    public function get(string $name) {
81 78
         if (!$this->has($name)) {
82 79
             throw new InvalidArgumentException(sprintf(
83 80
                 'Configuration [%s] does not exist',
Please login to merge, or discard this patch.