| 1 | <?php |
||
| 10 | trait AuthorizationTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var AuthorizationInterface |
||
| 14 | */ |
||
| 15 | private $authorization; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return AuthorizationInterface |
||
| 19 | */ |
||
| 20 | public function getAuthorization() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param AuthorizationInterface $authorization |
||
| 27 | */ |
||
| 28 | public function setAuthorization(AuthorizationInterface $authorization) |
||
| 32 | } |
||
| 33 |