Completed
Push — master ( 73261c...0cb3bc )
by Alexey
04:05
created
src/LazyObjectProxy.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -78,6 +78,9 @@
 block discarded – undo
78 78
         });
79 79
     }
80 80
 
81
+    /**
82
+     * @param string $method
83
+     */
81 84
     public function __call($method, $methodArguments)
82 85
     {
83 86
         return new static(function (...$arguments) use ($method, $methodArguments) {
Please login to merge, or discard this patch.
src/functions.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
          *
34 34
          * @param null|string $t Return class type hint (for PHPStorm, see .phpstorm.meta.php in the package's root)
35 35
          *
36
-         * @return callable
36
+         * @return LazyObjectProxy
37 37
          */
38 38
         function x($t = null)
39 39
         {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
          *
59 59
          * @param mixed $object
60 60
          *
61
-         * @return callable
61
+         * @return LazyObjectProxy
62 62
          */
63 63
         function lazy($object)
64 64
         {
Please login to merge, or discard this patch.