Edit File: PrunableRepository.php
<?php namespace Laravel\Telescope\Contracts; use DateTimeInterface; interface PrunableRepository { /** * Prune all of the entries older than the given date. * * @param \DateTimeInterface $before * @param bool $keepExceptions * @return int */ public function prune(DateTimeInterface $before, $keepExceptions); }
Back to File Manager