getValidTo() 공개 메소드

Get moment this certificate will expire Note: Will return null if certificate validation was disabled
public getValidTo ( ) : DateTime | null
리턴 DateTime | null
예제 #1
0
 /**
  * @group realpush
  */
 public function testValidationWithValidCert()
 {
     $cert = new Certificate(__DIR__ . '/../resources/paspas.pem', null);
     $this->assertNotNull($cert->getValidTo());
 }