12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- namespace Symfony\Component\HttpFoundation\Session\Attribute;
- use Symfony\Component\HttpFoundation\Session\SessionBagInterface;
- interface AttributeBagInterface extends SessionBagInterface
- {
-
- public function has($name);
-
- public function get($name, $default = null);
-
- public function set($name, $value);
-
- public function all();
- public function replace(array $attributes);
-
- public function remove($name);
- }
|