agent foundation
This commit is contained in:
18
lib/Http/CookieStoreInterface.php
Normal file
18
lib/Http/CookieStoreInterface.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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;
|
||||
}
|
||||
Reference in New Issue
Block a user