Completed
Push — master ( 41284f...a5051f )
by Dmitry
04:48
created
src/Controller/Api.php 2 patches
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.
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\Application;
6 6
 use Basis\Event;
7
-use Basis\Filesystem;
8 7
 use Basis\Runner;
9 8
 use Exception;
10 9
 
Please login to merge, or discard this patch.
test/php/Test/TestingTest.php 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Test;
4 4
 
5
-use Basis\Filesystem;
6
-use Basis\Job;
7 5
 use Basis\Test;
8 6
 
9 7
 class TestingTest extends Test
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.
src/Provider/PoolProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,12 +12,10 @@
 block discarded – undo
12 12
 use Tarantool\Client\Request\UpdateRequest;
13 13
 use Tarantool\Mapper\Client;
14 14
 use Tarantool\Mapper\Mapper;
15
-use Tarantool\Mapper\Plugin;
16 15
 use Tarantool\Mapper\Plugin\Sequence;
17 16
 use Tarantool\Mapper\Plugin\Spy;
18 17
 use Tarantool\Mapper\Plugin\Temporal;
19 18
 use Tarantool\Mapper\Pool;
20
-use Tarantool\Mapper\Schema;
21 19
 
22 20
 class PoolProvider extends AbstractServiceProvider
23 21
 {
Please login to merge, or discard this patch.
test/php/Test/DispatcherTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Basis\Test;
6 6
 use GuzzleHttp\Client;
7
-use GuzzleHttp\Exception\RequestException;
8 7
 use GuzzleHttp\Handler\MockHandler;
9 8
 use GuzzleHttp\HandlerStack;
10 9
 use GuzzleHttp\Middleware;
11
-use GuzzleHttp\Psr7\Request;
12 10
 use GuzzleHttp\Psr7\Response;
13 11
 
14 12
 class DispatcherTest extends Test
Please login to merge, or discard this patch.