1 | <?php |
||
11 | class MockSessionStorage extends MockStorage implements SessionInterface |
||
12 | { |
||
13 | /** |
||
14 | * @inheritdoc |
||
15 | */ |
||
16 | public function getByAccessToken(AccessTokenEntity $entity) |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function getByAuthCode(AuthCodeEntity $authCode) |
||
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | public function getScopes(SessionEntity $session) |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | */ |
||
45 | public function create($ownerType, $ownerId, $clientId, $clientRedirectUri = null) |
||
49 | |||
50 | /** |
||
51 | * @inheritdoc |
||
52 | */ |
||
53 | public function associateScope(SessionEntity $session, ScopeEntity $scope) |
||
57 | } |
||
58 |