| Línea 11... |
Línea 11... |
| 11 |
* It extracts cookies from HTTP requests, and returns them in HTTP responses.
|
11 |
* It extracts cookies from HTTP requests, and returns them in HTTP responses.
|
| 12 |
* CookieJarInterface instances automatically expire contained cookies when
|
12 |
* CookieJarInterface instances automatically expire contained cookies when
|
| 13 |
* necessary. Subclasses are also responsible for storing and retrieving
|
13 |
* necessary. Subclasses are also responsible for storing and retrieving
|
| 14 |
* cookies from a file, database, etc.
|
14 |
* cookies from a file, database, etc.
|
| 15 |
*
|
15 |
*
|
| 16 |
* @link https://docs.python.org/2/library/cookielib.html Inspiration
|
16 |
* @see https://docs.python.org/2/library/cookielib.html Inspiration
|
| - |
|
17 |
*
|
| 17 |
* @extends \IteratorAggregate<SetCookie>
|
18 |
* @extends \IteratorAggregate<SetCookie>
|
| 18 |
*/
|
19 |
*/
|
| 19 |
interface CookieJarInterface extends \Countable, \IteratorAggregate
|
20 |
interface CookieJarInterface extends \Countable, \IteratorAggregate
|
| 20 |
{
|
21 |
{
|
| 21 |
/**
|
22 |
/**
|