/**
  * Get and render the tweets.
  *
  * If quantity not specified, fetch from env.
  *
  * @param null|int $quantity
  */
 public function get($quantity = null)
 {
     if (is_null($quantity)) {
         $quantity = $this->env('feeds_quantity');
     }
     $this->view->toJson($this->tweet->getFeeds($quantity));
 }