| 1 | <?php |
||
| 21 | abstract class AbstractEntity implements Entity |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var Identity |
||
| 25 | */ |
||
| 26 | protected $identity; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * AbstractEntity constructor. |
||
| 30 | * |
||
| 31 | * @param Identity $identity |
||
| 32 | */ |
||
| 33 | public function __construct(Identity $identity) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | final public function getIdentity(): Identity |
||
| 45 | } |
||
| 46 |