Show
Ignore:
Timestamp:
02/12/09 10:40:48 (4 years ago)
Author:
nowelium
Message:

なんか色々mysqlとpdoの動きで大変だったので、修正

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Queue/HermitQueueFilter.php

    r29817 r29935  
    1414    protected $queue; 
    1515    protected $logger; 
    16     protected $nextHook; 
    1716     
    1817    public function __construct(HermitQueueIterator $queue){ 
     
    2524        } 
    2625        unset($this->queue); 
    27     } 
    28      
    29     public function setNextHook(array $callback){ 
    30         $this->nextHook = $callback; 
    3126    } 
    3227     
     
    5651    } 
    5752    public function next(){ 
    58         call_user_func_array($this->nextHook, array($this)); 
    5953        return $this->queue->next(); 
    6054    }