Completed
Push — master ( 7da3a7...59a876 )
by Dmitry
09:17
created
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   +10 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
         }
36 36
     }
37 37
 
38
+    /**
39
+     * @param string $key
40
+     */
38 41
     public function get($key)
39 42
     {
40 43
         if ($this->exists($key)) {
@@ -42,6 +45,9 @@  discard block
 block discarded – undo
42 45
         }
43 46
     }
44 47
 
48
+    /**
49
+     * @param string $key
50
+     */
45 51
     public function set($key, $value)
46 52
     {
47 53
         $filename = $this->path . '/' . $key;
@@ -55,6 +61,10 @@  discard block
 block discarded – undo
55 61
         $this->cache[$key] = $data;
56 62
     }
57 63
 
64
+    /**
65
+     * @param string $key
66
+     * @param \Closure $callback
67
+     */
58 68
     public function wrap($key, $callback)
59 69
     {
60 70
         if (!is_string($key)) {
Please login to merge, or discard this patch.
src/Application.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
         return parent::get($alias, $new);
92 92
     }
93 93
 
94
+    /**
95
+     * @param string $id
96
+     */
94 97
     public function hasInstance($id) : bool
95 98
     {
96 99
         if ($this->definitions->has($id)) {
Please login to merge, or discard this patch.
src/Test/Mapper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
         $this->serviceName = $service;
19 19
     }
20 20
 
21
+    /**
22
+     * @param string $space
23
+     */
21 24
     public function create($space, $params)
22 25
     {
23 26
         $key = $this->serviceName.'.'.$space;
Please login to merge, or discard this patch.
src/Procedure/JobQueue/Cleanup.php 1 patch
Doc Comments   -11 removed lines patch added patch discarded remove patch
@@ -14,14 +14,3 @@
 block discarded – undo
14 14
     public function getBody(): string
15 15
     {
16 16
         return <<<LUA
17
-        box.begin()
18
-        for i, t in box.space.job_queue.index.status_id:pairs('transfered') do
19
-            local result = box.space.job_result.index.service_hash:count({t.recipient, t.hash})
20
-            if result > 0 then
21
-                box.space.job_queue:delete(t.id)
22
-            end
23
-        end
24
-        box.commit()
25
-        LUA;
26
-    }
27
-}
Please login to merge, or discard this patch.
src/Procedure/JobQueue/Take.php 1 patch
Doc Comments   -11 removed lines patch added patch discarded remove patch
@@ -14,14 +14,3 @@
 block discarded – undo
14 14
     public function getBody(): string
15 15
     {
16 16
         return <<<LUA
17
-        box.begin()
18
-        local tuples = box.space.job_queue.index.status_id:select({'new'}, { limit = 1})
19
-        if #tuples > 0 then
20
-            local request = box.space.job_queue:update(tuples[1].id, {{'=', 2, 'processing'}})
21
-            box.commit()
22
-            return request
23
-        end
24
-        box.rollback()
25
-        LUA;
26
-    }
27
-}
Please login to merge, or discard this patch.
src/Procedure/JobResult/Foreign.php 1 patch
Doc Comments   -6 removed lines patch added patch discarded remove patch
@@ -14,9 +14,3 @@
 block discarded – undo
14 14
     public function getBody(): string
15 15
     {
16 16
         return <<<LUA
17
-        return box.space.job_result:pairs()
18
-            :filter(function(r) return r.service ~= service end)
19
-            :totable()
20
-        LUA;
21
-    }
22
-}
Please login to merge, or discard this patch.
src/Toolkit.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -79,6 +79,9 @@  discard block
 block discarded – undo
79 79
         return $this->get(Mapper::class)->getRepository($space);
80 80
     }
81 81
 
82
+    /**
83
+     * @param string $tube
84
+     */
82 85
     public function getQueue($tube)
83 86
     {
84 87
         $alias = "queue.$tube";
@@ -105,6 +108,9 @@  discard block
 block discarded – undo
105 108
         return $this->getRepository($space)->remove($params);
106 109
     }
107 110
 
111
+    /**
112
+     * @param string $fields
113
+     */
108 114
     protected function select($fields, string $table, array $params)
109 115
     {
110 116
         return $this->get(Clickhouse::class)->select($fields, $table, $params);
@@ -115,6 +121,9 @@  discard block
 block discarded – undo
115 121
         return $this->get(Clickhouse::class)->insert($table, $data, $headers);
116 122
     }
117 123
 
124
+    /**
125
+     * @param string $contents
126
+     */
118 127
     protected function upload(string $filename, $contents) : string
119 128
     {
120 129
         return $this->get(Storage::class)->upload($filename, $contents);
Please login to merge, or discard this patch.