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