blink\http\CookieBag::get PHP Method

get() public method

Returns a cookie by name.
public get ( $name ) : blink\http\Cookie | null
$name
return blink\http\Cookie | null
    public function get($name)
    {
        return isset($this->cookies[$name]) ? $this->cookies[$name] : null;
    }