getByAccountId() public static method

Static method to create a Feed Reader object from an account ID
public static getByAccountId ( string $service, string $id, integer $limit, string $prefix = 'Pop\Feed\Format\' ) : Reader
$service string
$id string
$limit integer
$prefix string
return Reader
Ejemplo n.º 1
0
 public function testGetByAccountIdException()
 {
     $this->setExpectedException('Pop\\Feed\\Exception');
     $feed = Feed\Reader::getByAccountId('badservice', '1234567890', 4);
 }