1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session;
- interface SessionBagInterface
- {
-
- public function getName(): string;
-
- public function initialize(array &$array);
-
- public function getStorageKey(): string;
-
- public function clear(): mixed;
- }
|