getFooter() public method

Method to get the footer template.
public getFooter ( ) : string
return string
コード例 #1
0
ファイル: PaginatorTest.php プロジェクト: nicksagona/PopPHP
 public function testSetAndGetFooter()
 {
     $p = new Paginator(array());
     $p->setFooter('footer');
     $this->assertEquals('footer', $p->getFooter());
 }