PrunableBatchRepository.php 318 B

12345678910111213141516
  1. <?php
  2. namespace Illuminate\Bus;
  3. use DateTimeInterface;
  4. interface PrunableBatchRepository extends BatchRepository
  5. {
  6. /**
  7. * Prune all of the entries older than the given date.
  8. *
  9. * @param \DateTimeInterface $before
  10. * @return int
  11. */
  12. public function prune(DateTimeInterface $before);
  13. }