예제 #1
0
파일: Queue.php 프로젝트: php-resque/resque
 /**
  * {@inheritDoc}
  */
 public function count()
 {
     return $this->storage->count($this);
 }
예제 #2
0
 function it_asks_storage_for_queue_length(QueueStorageInterface $storage)
 {
     $storage->count($this)->shouldBeCalled()->willReturn(61);
     $this->count()->shouldReturn(61);
 }