Overview

Namespaces

  • Copro
    • Adapters
  • Donut
    • Adapters
    • AtomFeed
    • Facebook
    • Instagram
    • PostFeed
    • Twitter

Classes

  • Copro\Adapters\DibiMysqlAdapter
  • Donut\Adapters\DibiMysqlAdapter
  • Donut\Adapters\DibiSqliteAdapter
  • Donut\Adapters\MemoryAdapter
  • Donut\AtomFeed\AtomFeedItem
  • Donut\AtomFeed\ConvertItemToFacebookPost
  • Donut\AtomFeed\ConvertItemToInstagramPost
  • Donut\AtomFeed\ConvertItemToTweet
  • Donut\AtomFeed\FetchNewItems
  • Donut\DefaultCurrentTimeFactory
  • Donut\Facebook\FacebookApi
  • Donut\Facebook\FacebookPost
  • Donut\Facebook\PublishFacebookPost
  • Donut\Helpers
  • Donut\Instagram\InstagramApi
  • Donut\Instagram\InstagramPost
  • Donut\Instagram\PublishInstagramPost
  • Donut\Manager
  • Donut\Message
  • Donut\Period
  • Donut\PostFeed\ConvertItemToFacebookPost
  • Donut\PostFeed\ConvertItemToInstagramPost
  • Donut\PostFeed\ConvertItemToTweet
  • Donut\PostFeed\FetchNewItems
  • Donut\PostFeed\PostFeedItem
  • Donut\Processor
  • Donut\ProducerInfo
  • Donut\Queue
  • Donut\Time
  • Donut\Twitter\PublishTweet
  • Donut\Twitter\Tweet
  • Donut\Twitter\TwitterApi

Interfaces

  • Donut\IAdapter
  • Donut\ICurrentTimeFactory
  • Donut\IProducer
  • Donut\IWorker

Exceptions

  • Donut\Exception
  • Donut\InvalidArgumentException
  • Donut\InvalidStateException
  • Overview
  • Namespace
  • Class
 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
            );
        }
    }
donut-org/donut v0.8.0 API documentation API documentation generated by ApiGen