Twitter\Intents\Tweet::setText PHP Method

setText() public method

Pre-populate Tweet text
Since: 1.0.0
public setText ( string $text ) : __CLASS__
$text string Tweet text
return __CLASS__ support chaining
    public function setText($text)
    {
        $text = trim($text);
        if ($text) {
            $this->text = $text;
        }
        return $this;
    }