ZF-8552: Issues with Zend_Queue example usage
Description
I believe there's a few errors in the example usage section of Zend_Queue
$queue = Zend_Queue('Array', $options);
Should be
$queue = new Zend_Queue('Array', $options);
-
$queue2 = $queue->create('queue2');
Should be
$queue2 = $queue->createQueue('queue2');
-
$queue->delete('queue2');
Should be
$queue->deleteQueue('queue2');
Comments
Posted by Satoru Yoshida (satoruyoshida) on 2009-12-15T13:53:59.000+0000
It is duplicate of ZF-7614