Add inherit docblocks to CryptKey

This commit is contained in:
Andrew Millington 2019-08-31 19:06:05 +01:00
parent 01d652ab29
commit d40a37570c
No known key found for this signature in database
GPG Key ID: 077754CA23023F4F

View File

@ -101,11 +101,17 @@ class CryptKey implements CryptKeyInterface
return 'file://' . $keyPath; return 'file://' . $keyPath;
} }
/**
* {@inheritDoc}
*/
public function getKeyPath() public function getKeyPath()
{ {
return $this->keyPath; return $this->keyPath;
} }
/**
* {@inheritDoc}
*/
public function getPassPhrase() public function getPassPhrase()
{ {
return $this->passPhrase; return $this->passPhrase;