getPemFile() public method

Get the path to the PEM file
public getPemFile ( ) : string
return string
Ejemplo n.º 1
0
 /**
  * @dataProvider correctConstructorArguments
  */
 public function testGetPemFile($pemFile, $passphrase, $validate, $endpoint)
 {
     $certificate = new Certificate($pemFile, $passphrase, $validate, $endpoint);
     $this->assertEquals(realpath($pemFile), $certificate->getPemFile(), 'Got incorrect PEM file path from getter.');
 }