Passed
Push — master ( 630e5e...94c8c0 )
by Alain
03:20
created
src/ConfigTrait.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @since 0.4.2
135 135
      *
136
-     * @return ConfigInterface Configuration settings to use.
136
+     * @return Config|null Configuration settings to use.
137 137
      */
138 138
     protected function fetchDefaultConfig()
139 139
     {
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
      *
152 152
      * @since 0.4.2
153 153
      *
154
-     * @return ConfigInterface Configuration settings to use.
154
+     * @return Config|null Configuration settings to use.
155 155
      */
156 156
     protected function fetchConfig($configFile)
157 157
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
     {
140 140
         $configFile = method_exists($this, 'getDefaultConfigFile')
141 141
             ? $this->getDefaultConfigFile()
142
-            : __DIR__ . '/../config/defaults.php';
142
+            : __DIR__.'/../config/defaults.php';
143 143
 
144 144
         return $this->fetchConfig($configFile);
145 145
     }
Please login to merge, or discard this patch.