Completed
Push — master ( dc8a1c...bb44ed )
by Dmitry
03:57
created
src/Controller/Api.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
47 47
         return is_array($data) ? $response : $response[0];
48 48
     }
49 49
 
50
+    /**
51
+     * @param Runner $runner
52
+     */
50 53
     private function process($runner, $rpc)
51 54
     {
52 55
         if (!property_exists($rpc, 'job')) {
Please login to merge, or discard this patch.
test/php/Test/TestingTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -11,6 +11,10 @@
 block discarded – undo
11 11
     public function test()
12 12
     {
13 13
         $userTest = new class($this->app) extends Test {
14
+
15
+            /**
16
+             * @param TestingTest $frameworkTest
17
+             */
14 18
             public function testMock($frameworkTest)
15 19
             {
16 20
                 $config = [
Please login to merge, or discard this patch.
src/Test.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@
 block discarded – undo
85 85
                 return $this;
86 86
             }
87 87
 
88
+            /**
89
+             * @param \Closure $result
90
+             */
88 91
             public function willDo($result)
89 92
             {
90 93
                 return $this->handler($result);
Please login to merge, or discard this patch.