13 lines
202 B
PHP
13 lines
202 B
PHP
<?php
|
|
|
|
namespace App\Text;
|
|
|
|
use App\Text\Text;
|
|
use App\Text\CreateTextDto;
|
|
|
|
interface TextRepository
|
|
{
|
|
public function create(CreateTextDto $dto): Text;
|
|
|
|
public function find(int $id): ?Text;
|
|
}
|