16 lines
257 B
PHP
16 lines
257 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Contracts\Repositories;
|
||
|
|
|
||
|
|
use Prettus\Repository\Contracts\RepositoryInterface;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Interface TitleRepository.
|
||
|
|
*
|
||
|
|
* @package namespace App\Contracts\Repositories;
|
||
|
|
*/
|
||
|
|
interface TitleRepository extends RepositoryInterface
|
||
|
|
{
|
||
|
|
//
|
||
|
|
}
|