1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Cycle\Database; |
||
6 | |||
7 | interface NamedInterface |
||
8 | { |
||
9 | /** |
||
10 | * @return non-empty-string |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
11 | */ |
||
12 | public function getName(): string; |
||
13 | |||
14 | /** |
||
15 | * @param non-empty-string $name |
||
0 ignored issues
–
show
|
|||
16 | */ |
||
17 | public function withName(string $name): static; |
||
18 | } |
||
19 |