Components\Model\User::setActivated PHP 메소드

setActivated() 공개 메소드

Set the column activated in the table as boolean.
public setActivated ( boolean $bool ) : mixed
$bool boolean a boolean value to be based if activated or not
리턴 mixed
    public function setActivated($bool)
    {
        $this->activated = (int) $bool;
        return $this;
    }