Arcanedev\SeoHelper\Entities\Keywords::add PHP Method

add() public method

Add a keyword to the content.
public add ( string $keyword ) : self
$keyword string
return self
    public function add($keyword)
    {
        $this->content[] = $this->clean($keyword);
        return $this;
    }