Aerys\ParsedBody::get PHP Method

get() public method

Fetch a string parameter (or null if it doesn't exist)
public get ( string $name ) : string | null
$name string
return string | null
    public function get(string $name)
    {
        return $this->fields[$name][0] ?? null;
    }