From d40a37570cbc19c149f0f4dcca8a318bb6f23d1b Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Sat, 31 Aug 2019 19:06:05 +0100 Subject: [PATCH] Add inherit docblocks to CryptKey --- src/CryptKey.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/CryptKey.php b/src/CryptKey.php index 0b6343d9..aaf22292 100644 --- a/src/CryptKey.php +++ b/src/CryptKey.php @@ -101,11 +101,17 @@ class CryptKey implements CryptKeyInterface return 'file://' . $keyPath; } + /** + * {@inheritDoc} + */ public function getKeyPath() { return $this->keyPath; } + /** + * {@inheritDoc} + */ public function getPassPhrase() { return $this->passPhrase;