| 1 | <?php |
||
| 16 | trait HasRealmTrait |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var Contract\RealmInterface |
||
| 20 | */ |
||
| 21 | private $realm; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return Contract\RealmInterface |
||
| 25 | */ |
||
| 26 | public function getRealm() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param Contract\RealmInterface $realm |
||
| 33 | */ |
||
| 34 | private function setRealm(Contract\RealmInterface $realm) |
||
| 38 | } |
||
| 39 |