Passed
Push — master ( 26d549...0e9514 )
by Alain
02:38
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.