Newscoop\Service\Model\Search\ColumnOrderLike::setLike PHP Метод

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

Set the search criteria on this column to be like the provided text, the text needs to have specified the place holders ex: '%right%' or '%rat%tuil'.
public setLike ( string $like ) : Newscoop\Service\Model\Search\ColumnOrderLike
$like string The text to be used for the like comparison, if null or empty will reset the like search option.
Результат Newscoop\Service\Model\Search\ColumnOrderLike This instance, used for chaining purposes.
    public function setLike($like)
    {
        $this->like = $like;
        return $this;
    }
ColumnOrderLike