ZF-8697: error in sample : $queue = Zend_Queue('Array', $options); <- missing "new"
Description
http://framework.zend.com/manual/en/…
// For configuration options // @see Zend_Queue_Adapater::__construct() $options = array( 'name' => 'queue1', );
// Create an array queue $queue = Zend_Queue('Array', $options);
==>
$queue = new Zend_Queue('Array', $options);
Comments
Posted by Christophe Gesché (moosh) on 2010-01-03T12:07:54.000+0000
same place