1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Alexandre Chouinard <Daazku@gmail.com>
Date: Tue, 2 May 2017 23:01:43 -0400
Subject: Update LoggerInterfaceTest to be phpunit 5.7+ compatible
Origin: https://github.com/php-fig/log/pull/52
---
Psr/Log/Test/LoggerInterfaceTest.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Psr/Log/Test/LoggerInterfaceTest.php b/Psr/Log/Test/LoggerInterfaceTest.php
index 4b861c3..9bc34b5 100644
--- a/Psr/Log/Test/LoggerInterfaceTest.php
+++ b/Psr/Log/Test/LoggerInterfaceTest.php
@@ -11,7 +11,7 @@ use Psr\Log\LogLevel;
* Implementors can extend the class and implement abstract methods to run this
* as part of their test suite.
*/
-abstract class LoggerInterfaceTest extends \PHPUnit_Framework_TestCase
+abstract class LoggerInterfaceTest extends \PHPUnit\Framework\TestCase
{
/**
* @return LoggerInterface
|