1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Core\Concern; |
4: | |
5: | |
6: | |
7: | |
8: | trait ReadableProtectedPropertiesTrait |
9: | { |
10: | use ReadableTrait; |
11: | |
12: | |
13: | |
14: | |
15: | public static function getReadableProperties(): array |
16: | { |
17: | return ['*']; |
18: | } |
19: | } |
20: | |