| 1 | <?php |
||
| 11 | class FigRequestCookies |
||
| 12 | { |
||
| 13 | public static function get(RequestInterface $request, string $name, ?string $value = null) : Cookie |
||
| 24 | |||
| 25 | public static function set(RequestInterface $request, Cookie $cookie) : RequestInterface |
||
| 32 | |||
| 33 | 1 | public static function modify(RequestInterface $request, string $name, callable $modify) : RequestInterface |
|
| 49 | |||
| 50 | 2 | public static function remove(RequestInterface $request, string $name) : RequestInterface |
|
| 57 | } |
||
| 58 |