Attribute
2 years ago
Flash
2 years ago
Storage
2 years ago
Session.php
2 years ago
SessionBagInterface.php
2 years ago
SessionBagProxy.php
2 years ago
SessionInterface.php
2 years ago
SessionUtils.php
2 years ago
SessionBagInterface.php
50 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 23-January-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation\Session; |
| 16 | |
| 17 | /** |
| 18 | * Session Bag store. |
| 19 | * |
| 20 | * @author Drak <drak@zikula.org> |
| 21 | */ |
| 22 | interface SessionBagInterface |
| 23 | { |
| 24 | /** |
| 25 | * Gets this bag's name. |
| 26 | * |
| 27 | * @return string |
| 28 | */ |
| 29 | public function getName(); |
| 30 | |
| 31 | /** |
| 32 | * Initializes the Bag. |
| 33 | */ |
| 34 | public function initialize(array &$array); |
| 35 | |
| 36 | /** |
| 37 | * Gets the storage key for this bag. |
| 38 | * |
| 39 | * @return string |
| 40 | */ |
| 41 | public function getStorageKey(); |
| 42 | |
| 43 | /** |
| 44 | * Clears out data from bag. |
| 45 | * |
| 46 | * @return mixed Whatever data was contained |
| 47 | */ |
| 48 | public function clear(); |
| 49 | } |
| 50 |