Completed
Push — master ( 6ecafd...3d8b1a )
by Dmitry
03:08
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/BootstrapTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Test;
4 4
 
5 5
 use Basis\Test;
6
-use Basis\Filesystem;
7 6
 
8 7
 class BootstrapTest extends Test
9 8
 {
Please login to merge, or discard this patch.
src/Job.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -8,6 +8,9 @@  discard block
 block discarded – undo
8 8
 {
9 9
     use Toolkit;
10 10
 
11
+    /**
12
+     * @param string $name
13
+     */
11 14
     protected function require($name)
12 15
     {
13 16
         if (!$this->$name) {
@@ -15,6 +18,9 @@  discard block
 block discarded – undo
15 18
         }
16 19
     }
17 20
 
21
+    /**
22
+     * @param string $message
23
+     */
18 24
     protected function confirm($message)
19 25
     {
20 26
         $hash = md5($message);
Please login to merge, or discard this patch.
src/Cache.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         }
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $key
37
+     */
35 38
     public function get($key)
36 39
     {
37 40
         if ($this->exists($key)) {
@@ -39,6 +42,9 @@  discard block
 block discarded – undo
39 42
         }
40 43
     }
41 44
 
45
+    /**
46
+     * @param string $key
47
+     */
42 48
     public function set($key, $value)
43 49
     {
44 50
         $filename = '.cache/'.$key;
Please login to merge, or discard this patch.