We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f12bb12 commit 9c94823Copy full SHA for 9c94823
README.md
@@ -141,6 +141,17 @@ $scheduler->addJob($appJob)
141
142
```
143
144
+When pulling up the queue to run the application command, the application object then
145
+needs to be registered with the queue object in order for it to find the command to execute:
146
+
147
+```php
148
+use Pop\Queue;
149
150
+$adapter = new Queue\Adapter\File('queues');
151
+$queue = Queue\Queue::load('pop-queue', $adapter, $application);
152
153
+```
154
155
### Executing a System Command
156
157
##### WARNING: Take caution in running and executing system commands from a PHP application
0 commit comments