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