1 | <?php |
||
24 | class SessionPersistence implements PersistenceInterface, SingletonInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var EnvironmentService |
||
28 | */ |
||
29 | protected $environmentService; |
||
30 | |||
31 | /** |
||
32 | * @var FrontendUserAuthentication|BackendUserAuthentication |
||
33 | */ |
||
34 | protected $user; |
||
35 | |||
36 | /** |
||
37 | * @param EnvironmentService $environmentService |
||
38 | */ |
||
39 | public function __construct(EnvironmentService $environmentService) |
||
50 | |||
51 | /** |
||
52 | * @inheritdoc |
||
53 | * |
||
54 | * @param FormIdentifierObject $identifierObject |
||
55 | * @return bool |
||
56 | */ |
||
57 | public function has(FormIdentifierObject $identifierObject) |
||
63 | |||
64 | /** |
||
65 | * @inheritdoc |
||
66 | * |
||
67 | * @param FormIdentifierObject $identifierObject |
||
68 | * @return FormInterface |
||
69 | */ |
||
70 | public function fetch(FormIdentifierObject $identifierObject) |
||
85 | |||
86 | /** |
||
87 | * @inheritdoc |
||
88 | * |
||
89 | * @param FormIdentifierObject $identifierObject |
||
90 | * @param FormInterface $form |
||
91 | */ |
||
92 | public function save(FormIdentifierObject $identifierObject, FormInterface $form) |
||
98 | |||
99 | /** |
||
100 | * @param string $identifier |
||
101 | * @return string |
||
102 | */ |
||
103 | protected function sanitizeIdentifier($identifier) |
||
107 | } |
||
108 |
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.