Completed
Push — master ( 018dd9...fb7d6e )
by Dmitry
03:09
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/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.
src/Application.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -7,6 +7,9 @@
 block discarded – undo
7 7
 
8 8
 class Application extends Container
9 9
 {
10
+    /**
11
+     * @param string $root
12
+     */
10 13
     public function __construct($root)
11 14
     {
12 15
         parent::__construct();
Please login to merge, or discard this patch.
src/Service.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
         }
20 20
     }
21 21
 
22
+    /**
23
+     * @param string $event
24
+     */
22 25
     public function eventExists($event)
23 26
     {
24 27
         return $this->exists("events/$event");
Please login to merge, or discard this patch.
tests/EventTest.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\Converter;
4 3
 use Basis\Event;
5 4
 
6 5
 class EventTest extends TestSuite
Please login to merge, or discard this patch.
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
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Basis\Application;
6 6
 use Basis\Config;
7 7
 use Basis\Event;
8
-use Basis\Filesystem;
9 8
 use Basis\Runner;
10 9
 use Exception;
11 10
 
Please login to merge, or discard this patch.
src/Job/Module/Assets.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,6 +22,9 @@
 block discarded – undo
22 22
         return $artifacts;
23 23
     }
24 24
 
25
+    /**
26
+     * @param string $type
27
+     */
25 28
     public function map($type)
26 29
     {
27 30
         $mapping = [];
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 Controller\Index;
6 5
 
7 6
 class HttpTest extends TestSuite
Please login to merge, or discard this patch.
tests/MetaTest.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Basis\Job\Job\Info;
4
-use Basis\Runner;
5
-use Job\Hello;
6
-
7 3
 class MetaTest extends TestSuite
8 4
 {
9 5
     public function test()
Please login to merge, or discard this patch.