1 | <?php |
||
25 | class SessionPersistence extends AbstractPersistence |
||
26 | { |
||
27 | /** |
||
28 | * @var int |
||
29 | */ |
||
30 | protected $priority = 500; |
||
31 | |||
32 | /** |
||
33 | * @var FrontendUserAuthentication|BackendUserAuthentication |
||
34 | */ |
||
35 | protected $user; |
||
36 | |||
37 | /** |
||
38 | * Initializes the user session, depending on the current TYPO3 environment. |
||
39 | */ |
||
40 | public function initialize() |
||
51 | |||
52 | /** |
||
53 | * Checks that the form instance that matches the identifier exists in the |
||
54 | * session. |
||
55 | * |
||
56 | * @param FormIdentifierObject $identifierObject |
||
57 | * @return bool |
||
58 | */ |
||
59 | public function has(FormIdentifierObject $identifierObject) |
||
65 | |||
66 | /** |
||
67 | * Returns the form instance that matches the identifier. If it does not |
||
68 | * exist, and exception is thrown. |
||
69 | * |
||
70 | * @param FormIdentifierObject $identifierObject |
||
71 | * @return FormInterface |
||
72 | * @throws EntryNotFoundException |
||
73 | */ |
||
74 | public function fetch(FormIdentifierObject $identifierObject) |
||
83 | |||
84 | /** |
||
85 | * Adds the given form entry to the session. |
||
86 | * |
||
87 | * @param FormIdentifierObject $identifierObject |
||
88 | * @param FormInterface $form |
||
89 | */ |
||
90 | public function save(FormIdentifierObject $identifierObject, FormInterface $form) |
||
96 | |||
97 | /** |
||
98 | * Removes the given entry from session. |
||
99 | * |
||
100 | * @param FormIdentifierObject $identifierObject |
||
101 | * @return void |
||
102 | */ |
||
103 | public function delete(FormIdentifierObject $identifierObject) |
||
109 | |||
110 | /** |
||
111 | * @param string $identifier |
||
112 | * @return string |
||
113 | */ |
||
114 | protected function sanitizeIdentifier($identifier) |
||
118 | } |
||
119 |
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.