Attribute
1 year ago
Flash
2 years ago
Storage
1 year ago
Session.php
1 year ago
SessionBagInterface.php
2 years ago
SessionBagProxy.php
1 year ago
SessionFactory.php
2 years ago
SessionFactoryInterface.php
2 years ago
SessionInterface.php
1 year ago
SessionUtils.php
1 year ago
SessionBagInterface.php
43 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 | namespace Matomo\Dependencies\Symfony\Component\HttpFoundation\Session; |
| 12 | |
| 13 | /** |
| 14 | * Session Bag store. |
| 15 | * |
| 16 | * @author Drak <drak@zikula.org> |
| 17 | */ |
| 18 | interface SessionBagInterface |
| 19 | { |
| 20 | /** |
| 21 | * Gets this bag's name. |
| 22 | * |
| 23 | * @return string |
| 24 | */ |
| 25 | public function getName(); |
| 26 | /** |
| 27 | * Initializes the Bag. |
| 28 | */ |
| 29 | public function initialize(array &$array); |
| 30 | /** |
| 31 | * Gets the storage key for this bag. |
| 32 | * |
| 33 | * @return string |
| 34 | */ |
| 35 | public function getStorageKey(); |
| 36 | /** |
| 37 | * Clears out data from bag. |
| 38 | * |
| 39 | * @return mixed Whatever data was contained |
| 40 | */ |
| 41 | public function clear(); |
| 42 | } |
| 43 |