LinkRepository.php 231 B

1234567891011121314
  1. <?php
  2. namespace App\Repositories;
  3. use Prettus\Repository\Contracts\RepositoryInterface;
  4. /**
  5. * Interface LinkRepository
  6. * @package namespace App\Repositories;
  7. */
  8. interface LinkRepository extends RepositoryInterface
  9. {
  10. //
  11. }