Minify_Env::post PHP Method

post() public method

public post ( $key = null, $default = null )
    public function post($key = null, $default = null)
    {
        if (null === $key) {
            return $this->post;
        }
        return isset($this->post[$key]) ? $this->post[$key] : $default;
    }