Aerys\ParsedBody::get PHP Méthode

get() public méthode

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