LogRepository.php 197 B

123456789101112
  1. <?php
  2. namespace App\Contracts\Repositories\Base;
  3. use Prettus\Repository\Contracts\RepositoryInterface;
  4. /**
  5. * Interface LogRepository.
  6. */
  7. interface LogRepository extends RepositoryInterface
  8. {
  9. }