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