コード例 #1
0
ファイル: Queue.php プロジェクト: php-resque/resque
 /**
  * {@inheritDoc}
  */
 public function count()
 {
     return $this->storage->count($this);
 }
コード例 #2
0
ファイル: QueueSpec.php プロジェクト: php-resque/resque
 function it_asks_storage_for_queue_length(QueueStorageInterface $storage)
 {
     $storage->count($this)->shouldBeCalled()->willReturn(61);
     $this->count()->shouldReturn(61);
 }