| 1 | <?php |
||
| 20 | abstract class AbstractPersistentCookieJar extends CookieJar implements PersistentCookieJarInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @param CookieFactoryInterface|null $cookieFactory |
||
| 24 | * @param bool $load |
||
| 25 | */ |
||
| 26 | 189 | public function __construct(CookieFactoryInterface $cookieFactory = null, $load = true) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | 81 | public function __destruct() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | 99 | public function serialize() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritdoc} |
||
| 55 | */ |
||
| 56 | 99 | public function unserialize($serialized) |
|
| 75 | } |
||
| 76 |