ZF-9482: Minor error on Code example in the ZendX_Console_Process_Unix documentation
Description
Reference: http://framework.zend.com/manual/en/…
Current example shows:
// Stay in the loop if BOTH processes are running...
while ($process1->isRunning() && $process2->isRunning()) {
sleep(1);
}
It should be:
// Stay in the loop if one of the processes is running...
while ($process1->isRunning() || $process2->isRunning()) {
sleep(1);
}
Comments
Posted by Juozas Kaziukenas (juokaz) on 2010-04-16T12:13:23.000+0000
Fixed in r21891