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