getPerPage() public méthode

Returns the total amount of entries allowed per page.
public getPerPage ( ) : integer
Résultat integer
Exemple #1
0
 public function testPaginatorConstruct()
 {
     $paginator = new Paginator([], 50, 0, 0);
     $this->assertEquals(0, $paginator->getPages());
     $this->assertEquals(0, $paginator->count());
     $this->assertEquals(50, $paginator->getPerPage());
 }