Beispiel #1
0
 public function buildArray()
 {
     $twitter = new Twitter();
     $tweets = $twitter->getTweets();
     $start = (int) $this->getStart();
     $count = (int) $this->getCount();
     return array_slice($tweets, $start, $count);
 }