Ce n' “return $this” signifie?

J'essaie de comprendre ce code, et quand je suis arrivé à la dernière ligne, je n'ai pas l'obtenir. 🙁

Puis-je avoir votre aide afin de trouver, ce n' return $this veux dire ?

public function setOptions(array $options) {
    $methods = get_class_methods($this);
    foreach ($options as $key => $value) {
        $method = 'set' . ucfirst($key);
        if (in_array($method, $methods)) {
            $this->$method($value);
        }
    }

    //???? - return what ?
    return $this;
}

Mise à jour:

J'ai supprimé mes commentaires pour une meilleure clarification.

InformationsquelleAutor MEM | 2011-05-10