Passed
Push — master ( 630e5e...94c8c0 )
by Alain
03:20
created
src/ConfigFactory.php 1 patch
Doc Comments   +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
      * @param string|array $_ List of files.
36 36
      *
37
-     * @return ConfigInterface Instance of a ConfigInterface implementation.
37
+     * @return Config|null Instance of a ConfigInterface implementation.
38 38
      */
39 39
     public static function createFromFile($_)
40 40
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @param array $array Array with configuration values.
78 78
      *
79
-     * @return ConfigInterface Instance of a ConfigInterface implementation.
79
+     * @return Config|null Instance of a ConfigInterface implementation.
80 80
      */
81 81
     public static function createFromArray(array $array)
82 82
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      *
99 99
      * @param mixed $_ Array with configuration values.
100 100
      *
101
-     * @return ConfigInterface Instance of a ConfigInterface implementation.
101
+     * @return Config|null Instance of a ConfigInterface implementation.
102 102
      */
103 103
     public static function create($_)
104 104
     {
Please login to merge, or discard this patch.
src/Loader/PHPLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      *
33 33
      * @param string $uri URI of the resource to load.
34 34
      *
35
-     * @return array Data contained within the resource.
35
+     * @return boolean Data contained within the resource.
36 36
      */
37 37
     public static function canLoad($uri)
38 38
     {
Please login to merge, or discard this patch.
src/ConfigTrait.php 1 patch
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.