for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Message\CookieJar;
use Http\Message\CookieJar;
/**
* Common implementation of a Cookie Jar.
*
* @author Márk Sági-Kazár <[email protected]>
*/
class InMemoryCookieJar implements CookieJar
{
use CookieJarTemplate;
public function __construct()
$this->cookies = new \SplObjectStorage();
}