Completed
Pull Request — master (#37)
by Angelo
02:34
created
src/Moka/Factory/ProxyGeneratorFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * @param string $fqcn
13 13
      * @param MockingStrategyInterface $mockingStrategy
14
-     * @return ProxyInterface
14
+     * @return ProxyGenerator
15 15
      */
16 16
     public static function get(string $fqcn, MockingStrategyInterface $mockingStrategy)
17 17
     {
Please login to merge, or discard this patch.
src/Moka/Generator/ProxyGenerator.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -16,6 +16,9 @@
 block discarded – undo
16 16
         $this->mockingStrategy = $mockingStrategy;
17 17
     }
18 18
 
19
+    /**
20
+     * @param string $fqcn
21
+     */
19 22
     final public function generate($fqcn): ProxyInterface
20 23
     {
21 24
         $object = $this->mockingStrategy->build($fqcn);
Please login to merge, or discard this patch.