| 1 | <?php | ||
| 17 | trait ElementAttributeTrait | ||
| 18 | { | ||
| 19 | use ElementMutatorTrait; | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @var int|null | ||
| 23 | */ | ||
| 24 | private $elementId; | ||
| 25 | |||
| 26 | /** | ||
| 27 | * @inheritDoc | ||
| 28 | */ | ||
| 29 | protected function internalSetElementId(int $id = null) | ||
| 34 | |||
| 35 | /** | ||
| 36 | * @inheritDoc | ||
| 37 | */ | ||
| 38 | protected function internalGetElementId() | ||
| 42 | } | ||
| 43 |