LMongo\Eloquent\Model::touches PHP Метод

touches() публичный Метод

Determine if the model touches a given relation.
public touches ( string $relation ) : boolean
$relation string
Результат boolean
    public function touches($relation)
    {
        return in_array($relation, $this->touches);
    }
Model