League\Monga\Query\Update::single PHP Метод

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

Set the multiple option negatively.
public single ( boolean $single = true ) : object
$single boolean whether to allow single updates
Результат object $this
    public function single($single = true)
    {
        $this->multiple = !$single;
        return $this;
    }