1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Core\Concern; |
4: | |
5: | use Salient\Contract\Core\Entity\Readable; |
6: | use Salient\Core\Internal\ReadPropertyTrait; |
7: | |
8: | /** |
9: | * @api |
10: | * |
11: | * @phpstan-require-implements Readable |
12: | */ |
13: | trait ReadableTrait |
14: | { |
15: | use ReadPropertyTrait; |
16: | |
17: | public static function getReadableProperties(): array |
18: | { |
19: | return []; |
20: | } |
21: | } |
22: |