| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | interface CookieFactoryInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param string $name |
||
| 21 | * @param string $value |
||
| 22 | * @param array $attributes |
||
| 23 | * @param int $createdAt |
||
| 24 | * |
||
| 25 | * @return CookieInterface |
||
| 26 | */ |
||
| 27 | public function create($name, $value, array $attributes, $createdAt); |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $header |
||
| 31 | * |
||
| 32 | * @return CookieInterface |
||
| 33 | */ |
||
| 34 | public function parse($header); |
||
| 35 | } |
||
| 36 |