Completed
Push — master ( 8260b5...6e390f )
by Dmitry
08:05
created
src/Test.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
         $this->dispatch('tarantool.clear');
27 27
     }
28 28
 
29
+    /**
30
+     * @param string $job
31
+     */
29 32
     public function dispatch($job, $params = [])
30 33
     {
31 34
         return $this->app->dispatch($job, $params);
Please login to merge, or discard this patch.
src/Runner.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
         return $class;
64 64
     }
65 65
 
66
+    /**
67
+     * @param string $nick
68
+     */
66 69
     public function dispatch($nick, $arguments = [])
67 70
     {
68 71
         $class = $this->getJobClass($nick);
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Basis;
4 4
 
5 5
 use LogicException;
6
-use League\Container\Container;
7 6
 use ReflectionClass;
8 7
 use ReflectionProperty;
9 8
 
Please login to merge, or discard this patch.