Issues (265)

src/NamedInterface.php (2 issues)

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
The doc comment non-empty-string at position 0 could not be parsed: Unknown type name 'non-empty-string' at position 0 in non-empty-string.
Loading history...
11
     */
12
    public function getName(): string;
13
14
    /**
15
     * @param non-empty-string $name
0 ignored issues
show
Documentation Bug introduced by
The doc comment non-empty-string at position 0 could not be parsed: Unknown type name 'non-empty-string' at position 0 in non-empty-string.
Loading history...
16
     */
17
    public function withName(string $name): static;
18
}
19