Completed
Push — master ( 52239f...2586be )
by Akihito
02:50
created
src/Snidel/Fork/Container.php 2 patches
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,6 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @param   int     $ownerPid
56
+     * @param \Ackintosh\Snidel\Log $log
56 57
      */
57 58
     public function __construct($ownerPid, $log, $concurrency = 5)
58 59
     {
@@ -68,6 +69,7 @@  discard block
 block discarded – undo
68 69
 
69 70
     /**
70 71
      * @param   \Ackintosh\Snidel\Task
72
+     * @param \Ackintosh\Snidel\Task\Task $task
71 73
      * @return  void
72 74
      * @throws  \RuntimeException
73 75
      */
@@ -89,7 +91,7 @@  discard block
 block discarded – undo
89 91
     }
90 92
 
91 93
     /**
92
-     * @return  \Ackintosh\Snidel\Fork\Fork
94
+     * @return  Result
93 95
      */
94 96
     private function dequeue()
95 97
     {
@@ -293,6 +295,9 @@  discard block
 block discarded – undo
293 295
         }
294 296
     }
295 297
 
298
+    /**
299
+     * @param string $tag
300
+     */
296 301
     public function getCollection($tag = null)
297 302
     {
298 303
         if ($tag === null) {
@@ -335,7 +340,7 @@  discard block
 block discarded – undo
335 340
     }
336 341
 
337 342
     /**
338
-     * @return  \Ackintosh\Sniden\Error
343
+     * @return  Error
339 344
      */
340 345
     public function getError()
341 346
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Ackintosh\Snidel\Result\Queue as ResultQueue;
10 10
 use Ackintosh\Snidel\Result\Collection;
11 11
 use Ackintosh\Snidel\Error;
12
-use Ackintosh\Snidel\Exception\SharedMemoryControlException;
13 12
 use Ackintosh\Snidel\Worker;
14 13
 use Ackintosh\Snidel\ActiveWorkerSet;
15 14
 
Please login to merge, or discard this patch.
src/Snidel.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
         foreach ($this->signals as $sig) {
61 61
             $this->pcntl->signal(
62 62
                 $sig,
63
-                function ($sig) use($log, $self) {
64
-                    $log->info('received signal. signo: ' . $sig);
63
+                function($sig) use($log, $self) {
64
+                    $log->info('received signal. signo: '.$sig);
65 65
                     $self->setReceivedSignal($sig);
66 66
 
67 67
                     $log->info('--> sending a signal " to children.');
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             );
74 74
         }
75 75
 
76
-        $this->log->info('parent pid: ' . $this->ownerPid);
76
+        $this->log->info('parent pid: '.$this->ownerPid);
77 77
     }
78 78
 
79 79
     /**
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
             throw $e;
112 112
         }
113 113
 
114
-        $this->log->info('queued task #' . $this->container->queuedCount());
114
+        $this->log->info('queued task #'.$this->container->queuedCount());
115 115
     }
116 116
 
117 117
     /**
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
             $this->wait();
155 155
         }
156 156
         if ($tag !== null && !$this->container->hasTag($tag)) {
157
-            throw new \InvalidArgumentException('unknown tag: ' . $tag);
157
+            throw new \InvalidArgumentException('unknown tag: '.$tag);
158 158
         }
159 159
 
160 160
         return $this->container->getCollection($tag);
Please login to merge, or discard this patch.