From 01d652ab29ddf4d7366bbf8fe107f72c7c760e2a Mon Sep 17 00:00:00 2001 From: Andrew Millington Date: Sat, 31 Aug 2019 19:02:39 +0100 Subject: [PATCH] Remove type hinting --- src/CryptKey.php | 4 ++-- src/CryptKeyInterface.php | 5 ++--- tests/AuthorizationServerTest.php | 3 ++- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/CryptKey.php b/src/CryptKey.php index 0d7a0355..0b6343d9 100644 --- a/src/CryptKey.php +++ b/src/CryptKey.php @@ -101,12 +101,12 @@ class CryptKey implements CryptKeyInterface return 'file://' . $keyPath; } - public function getKeyPath(): string + public function getKeyPath() { return $this->keyPath; } - public function getPassPhrase(): ?string + public function getPassPhrase() { return $this->passPhrase; } diff --git a/src/CryptKeyInterface.php b/src/CryptKeyInterface.php index 115f21b2..86c7b044 100644 --- a/src/CryptKeyInterface.php +++ b/src/CryptKeyInterface.php @@ -1,5 +1,4 @@ privateKey;