1
0
Files
breadcrumb-the-shire/core/Http/CookieStoreInterface.php

19 lines
387 B
PHP
Raw Normal View History

2026-03-06 00:44:52 +01:00
<?php
namespace MintyPHP\Http;
interface CookieStoreInterface
{
public function get(string $name): string;
/**
* @param array<string, mixed> $options
*/
public function set(string $name, string $value, array $options = []): void;
/**
* @param array<string, mixed> $options
*/
public function remove(string $name, array $options = []): void;
}