1: <?php 2: class Horde_Queue_Runner_RequestShutdown extends Horde_Queue_Runner_Base 3: { 4: public function __destruct() 5: { 6: foreach ($this->_storage->getMany() as $task) { 7: $task->run(); 8: } 9: } 10: 11: }