I just noticed this today, but Zend_Queue_Adapter_Abstract does not allow
came cased name spaces. Ex:

$options = array(
  'name' => 'myQueue',
  'adapterNamespace' => 'MyOwn_Namespace'
);

$queue = new Zend_Queue('My_Queue_Adapter', $options);


It will try to load "Myown_Namespace_My_Queue_Adapter".

I can get around this by instantiating the adapter myself and passing it to
Zend_Queue, but I was just curious as to whether this is intentional or not.
-- 
View this message in context: 
http://n4.nabble.com/Zend-Queue-not-allowing-camel-cased-namespaces-with-custom-adapters-tp997502p997502.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to