Completed
Push — master ( 0287cb...35c8bf )
by Dmitry
04:37
created
src/Controllers/Api.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,8 @@
 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
-use Tarantool\Mapper\Plugins\Spy;
11 9
 
12 10
 class Api
13 11
 {
Please login to merge, or discard this patch.
src/Jobs/Module/Bootstrap.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Basis\Filesystem;
6 6
 use Basis\Service;
7 7
 use Basis\Runner;
8
-use Exception;
9 8
 use ReflectionClass;
10 9
 use ReflectionProperty;
11 10
 
Please login to merge, or discard this patch.
src/Providers/CoreProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Basis\Providers;
4 4
 
5
-use Basis\Config;
6 5
 use Basis\Dispatcher;
7 6
 use Basis\Framework;
8 7
 use Basis\Http;
Please login to merge, or discard this patch.
src/Service.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@  discard block
 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");
@@ -35,6 +38,9 @@  discard block
 block discarded – undo
35 38
         $this->store("jobs/$job/service", $this->name);
36 39
     }
37 40
 
41
+    /**
42
+     * @param string $event
43
+     */
38 44
     public function subscribe($event)
39 45
     {
40 46
         $this->store("events/$event/$this->name");
Please login to merge, or discard this patch.