Просмотр файла app/Repositories/RepositoryInterface.php

Размер файла: 148B
  1. <?php
  2.  
  3. declare(strict_types=1);
  4.  
  5. namespace App\Repositories;
  6.  
  7. /**
  8. * Describes the interface of a repository
  9. */
  10. interface RepositoryInterface
  11. {
  12.  
  13. }