1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Core\Concern; |
4: | |
5: | /** |
6: | * Extends HasWritableProperties to write all protected properties by default |
7: | * |
8: | * @see HasWritableProperties |
9: | */ |
10: | trait WritesProtectedProperties |
11: | { |
12: | use HasWritableProperties; |
13: | |
14: | public static function getWritableProperties(): array |
15: | { |
16: | return ['*']; |
17: | } |
18: | } |
19: |