12 lines
169 B
PHP
12 lines
169 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories\Faqs;
|
|
|
|
use App\Repositories\ContractInterface;
|
|
|
|
interface FaqContractInterface extends ContractInterface
|
|
{
|
|
|
|
} |