Esempio n. 1
0
 /**
  * Constructor
  *
  * @param string $userId   The flickr user id
  * @param string $username The flickr username
  * @param Client $client   A client
  */
 public function __construct($userId, $username, Client $client = null)
 {
     $feedUrl = sprintf(self::FEED_URL, $userId, $username);
     $profileUrl = sprintf(self::PROFILE_URL, $username);
     parent::__construct($feedUrl, $profileUrl, $client);
 }