From efa248c4252f2616e15e275fb85640fdf3ab8748 Mon Sep 17 00:00:00 2001 From: Radoslaw Mejer Date: Wed, 18 Nov 2015 15:04:32 +0100 Subject: [PATCH] Fix throwing Prophet error --- src/Framework/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Framework/TestCase.php b/src/Framework/TestCase.php index 048587baba0..ffbdf921f04 100644 --- a/src/Framework/TestCase.php +++ b/src/Framework/TestCase.php @@ -1004,7 +1004,7 @@ protected function verifyMockObjects() if ($this->prophet !== null) { try { $this->prophet->checkPredictions(); - } catch (Throwable $t) { + } catch (Throwable $e) { /* Intentionally left empty */ } catch (Exception $e) { /* Intentionally left empty */