public function PurgeQueueFake::process in Purge 7.2
Calls the BundleQueue object.
File
- includes/
purge.class.inc, line 439 - Contains all class and interface definitions for Purge.
Class
- PurgeQueueFake
- Class definition for the Fake Queue. This will issue all requests in the current process.
Code
public function process() {
$queue_bundle = new PurgeBundleQueue($this->queue);
$queue_bundle
->execute($this->queue);
}