| 1 | <?php |
||
| 19 | class StoreContainer extends AbstractPimpleContainer implements StoreContainerInterface |
||
| 20 | { |
||
| 21 | const REQUEST_STATE_STORE = 'lightsaml.container.request_state_store'; |
||
| 22 | const ID_STATE_STORE = 'lightsaml.container.id_state_store'; |
||
| 23 | const SSO_STATE_STORE = 'lightsaml.container.sso_state_store'; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return RequestStateStoreInterface |
||
| 27 | */ |
||
| 28 | 2 | public function getRequestStateStore() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return IdStoreInterface |
||
| 35 | */ |
||
| 36 | 1 | public function getIdStateStore() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return SsoStateStoreInterface |
||
| 43 | */ |
||
| 44 | 1 | public function getSsoStateStore() |
|
| 48 | } |
||
| 49 |