/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Bus/PrunableBatchRepository.php
16 строк
318 B
Taylor Otwell
add files
24 дек 2020, 21:50
24 дек 2020, 21:50
33f5ac6
Код
Авторство
О чём код?
<?php namespace Illuminate\Bus; use DateTimeInterface; interface PrunableBatchRepository extends BatchRepository { /** * Prune all of the entries older than the given date. * * @param \DateTimeInterface $before * @return int */ public function prune(DateTimeInterface $before); }