1 | <?php |
||
18 | class LogoutSessionResolver implements LogoutSessionResolverInterface |
||
19 | { |
||
20 | /** @var SsoStateStoreInterface */ |
||
21 | protected $ssoStateStore; |
||
22 | |||
23 | /** |
||
24 | * @param SsoStateStoreInterface $ssoStateStore |
||
25 | */ |
||
26 | 10 | public function __construct(SsoStateStoreInterface $ssoStateStore) |
|
30 | |||
31 | /** |
||
32 | * @param string $ownEntityId |
||
33 | * |
||
34 | * @return SsoSessionState|null |
||
35 | */ |
||
36 | 9 | public function resolve($ownEntityId) |
|
49 | |||
50 | public function terminateSession($entityId, $nameId, $nameIdFormat, $sessionIndex = null) |
||
73 | 5 | ||
74 | /** |
||
75 | * @param SsoState $ssoState |
||
76 | * @param string $ownEntityId |
||
77 | * |
||
78 | * @return SsoSessionState|null |
||
79 | */ |
||
80 | protected function getSpSession(SsoState $ssoState, $ownEntityId) |
||
86 | |||
87 | /** |
||
88 | * @param SsoState $ssoState |
||
89 | * @param string $ownEntityId |
||
90 | * |
||
91 | * @return SsoSessionState|null |
||
92 | */ |
||
93 | protected function getIdpSession(SsoState $ssoState, $ownEntityId) |
||
99 | } |
||
100 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.