getTotal() 공개 메소드

Method to get the content items total
public getTotal ( ) : integer
리턴 integer
예제 #1
0
 public function testSetAndGetTotal()
 {
     $p = new Paginator(array());
     $p->setTotal(100);
     $this->assertEquals(100, $p->getTotal());
 }