Webador / SlmQueue

Laminas / Mezzio module that integrates with various queue management systems.
Other
137 stars 56 forks source link

Documentation cites an unfound Factory #142

Closed EMCP closed 10 years ago

EMCP commented 10 years ago

I do not see this mentioned factory anywhere in SlmQueueBeanstalkd's codebase. Am I missing something or is this an older factory name?

Source : https://github.com/juriansluiman/SlmQueue/blob/master/docs/2.Configuration.md

'slm_queue' => array(
    'queue_manager' => array(
        'factories' => array(
            'default' => 'SlmQueueBeanstalkd\Factory\BeanstalkdQueueFactory'
        ),
    ),
),
EMCP commented 10 years ago

Was confused since the Factory wasn't being included in the module.config.php, but I do see that the class does indeed exist. not sure why it's not listed in the module.config.php

juriansluiman commented 10 years ago

What do you mean with the last comment:

Was confused since the Factory wasn't being included in the module.config.php, but I do see that the class does indeed exist. not sure why it's not listed in the module.config.php

Is there something SlmQueue could provide to prevent the confusion?

EMCP commented 10 years ago

No, I think I just needed to relax and look in the folder.

I'm used to thinking all factories are registered in a module's module.config.php , so upon not seeing it there got confused.