11 lines
214 B
PHP
Executable file
11 lines
214 B
PHP
Executable file
<?php declare(strict_types=1);
|
|
|
|
namespace Amp\Http\Client\Cookie;
|
|
|
|
class InMemoryCookieJarTest extends CookieJarTest
|
|
{
|
|
protected function createJar(): CookieJar
|
|
{
|
|
return new LocalCookieJar;
|
|
}
|
|
}
|