getStartDate() public method

Get the card start date, using the specified date format string
public getStartDate ( string $format ) : string
$format string
return string
Exemplo n.º 1
0
 public function testStartDate()
 {
     $this->card->setStartMonth('11');
     $this->card->setStartYear('2012');
     $this->assertEquals('112012', $this->card->getStartDate('mY'));
 }