From: Guilhem Moulin <guilhem@debian.org>
Date: Sun, 20 Dec 2020 13:37:14 +0100
Subject: Fix FTBFS with phpunit 8.5.13-1.

Forwarded: not-needed
---
 Crypt_GPG-1.6.4/tests/ImportKeyTest.php    | 2 +-
 Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php | 2 +-
 Crypt_GPG-1.6.4/tests/TestCase.php         | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
index b044471..53bea24 100644
--- a/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
+++ b/Crypt_GPG-1.6.4/tests/ImportKeyTest.php
@@ -60,7 +60,7 @@ class ImportKeyTestCase extends Crypt_GPG_TestCase
     // set up
     // {{{ setUp()
 
-    public function setUp()
+    public function setUp(): void
     {
         parent::setUp();
 
diff --git a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
index 919752d..ab08b8f 100644
--- a/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
+++ b/Crypt_GPG-1.6.4/tests/KeyGeneratorTest.php
@@ -174,7 +174,7 @@ class KeyGeneratorTestCase extends Crypt_GPG_TestCase
     // }}}
     // {{{ setUp()
 
-    public function setUp()
+    public function setUp(): void
     {
         parent::setUp();
         $this->generator = new Crypt_GPG_KeyGenerator($this->getOptions());
diff --git a/Crypt_GPG-1.6.4/tests/TestCase.php b/Crypt_GPG-1.6.4/tests/TestCase.php
index 431dbee..17d4aed 100644
--- a/Crypt_GPG-1.6.4/tests/TestCase.php
+++ b/Crypt_GPG-1.6.4/tests/TestCase.php
@@ -119,7 +119,7 @@ abstract class Crypt_GPG_TestCase extends PHPUnit\Framework\TestCase
     // set up
     // {{{ setUp()
 
-    public function setUp()
+    public function setUp(): void
     {
         // load test configuration file if it exists
         $configFilename = __DIR__ . '/config.php';
@@ -567,7 +567,7 @@ TEXT;
     // }}}
     // {{{ tearDown()
 
-    public function tearDown()
+    public function tearDown(): void
     {
         unset($this->gpg);
 
