Completed
Push — master ( 382c80...0287cb )
by Dmitry
04:23
created
src/Controllers/Api.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return is_array($data) ? $response : $response[0];
45 45
     }
46 46
 
47
+    /**
48
+     * @param Runner $runner
49
+     */
47 50
     private function process($runner, $rpc)
48 51
     {
49 52
         if(!property_exists($rpc, 'job')) {
Please login to merge, or discard this patch.
src/Etcd.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
         $this->store("jobs/$job/service", $this->service);
29 29
     }
30 30
 
31
+    /**
32
+     * @param string $event
33
+     */
31 34
     public function subscribe($event)
32 35
     {
33 36
         $this->store("events/$event/$this->service");
Please login to merge, or discard this patch.
src/Dispatcher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
         $this->etcd = $etcd;
15 15
     }
16 16
 
17
+    /**
18
+     * @param string $job
19
+     */
17 20
     public function dispatch($job, $params = [], $host = null)
18 21
     {
19 22
 
Please login to merge, or discard this patch.