getDateFormat() public method

Method to get the date format.
public getDateFormat ( ) : string
return string
Example #1
0
 public function testSetAndGetDateFormat()
 {
     $p = new Paginator(array());
     $p->setDateFormat('m/d/Y');
     $this->assertEquals('m/d/Y', $p->getDateFormat());
 }