Completed
Push — master ( 346e09...46a5ae )
by Dmitry
06:10
created
tests/ApplicationTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Basis\Application;
4
-use Basis\Converter;
5 4
 use League\Container\Container;
6 5
 
7 6
 class ApplicationTest extends TestSuite
Please login to merge, or discard this patch.
tests/HttpTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 use Basis\Http;
4
-
5 4
 use Controllers\Index;
6 5
 
7 6
 class HttpTest extends TestSuite
Please login to merge, or discard this patch.
tests/ProviderTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Config;
4 3
 use League\Container\Container;
5 4
 use LinkORB\Component\Etcd\Client;
6 5
 
Please login to merge, or discard this patch.
tests/RunnerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Jobs\Job\Info;
4 3
 use Basis\Runner;
5 4
 use Jobs\Hello\World;
6 5
 
Please login to merge, or discard this patch.
src/Controllers/Api.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Basis\Config;
6 6
 use Basis\Event;
7
-use Basis\Filesystem;
8 7
 use Basis\Runner;
9 8
 use Exception;
10 9
 use Tarantool\Mapper\Plugins\Spy;
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.