1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78:
<?php
namespace Donut\Twitter;
use Donut\Message;
use Donut\Helpers;
class Tweet
{
/** @var string */
private $text;
/** @var string|NULL */
private $media;
/**
* @param string
* @param string|NULL
*/
public function __construct($text, $media)
{
$text = Helpers::stripWhitespace($text);
if ($text === '') {
throw new \Donut\InvalidArgumentException('No text of tweet.');
}
$this->text = $text;
$this->media = $media;
}
/**
* @return string
*/
public function getText()
{
return $this->text;
}
/**
* @return string|NULL
*/
public function getMedia()
{
return $this->media;
}
/**
* @return array
*/
public function toArray()
{
return array(
'text' => $this->text,
'media' => $this->media,
);
}
/**
* @param array
* @return static
* @throws \RuntimeException
*/
public static function fromArray(array $data)
{
return new static(
isset($data['text']) ? $data['text'] : NULL, // TODO: exception
isset($data['media']) ? $data['media'] : NULL
);
}
}