getSeparator() public method

Method to get the bookend separator.
public getSeparator ( ) : string
return string
Example #1
0
 public function testSetAndGetSeparator()
 {
     $p = new Paginator(array());
     $p->setSeparator(' : ');
     $this->assertEquals(' : ', $p->getSeparator());
 }