1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Alexandre Chouinard <Daazku@gmail.com>
Date: Wed, 3 May 2017 11:29:04 -0400
Subject: Use the use statement to import \PHPUnit\Framework\TestCase
Origin: https://github.com/php-fig/log/pull/52
---
Psr/Log/Test/LoggerInterfaceTest.php | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Psr/Log/Test/LoggerInterfaceTest.php b/Psr/Log/Test/LoggerInterfaceTest.php
index 9bc34b5..8e445ee 100644
--- a/Psr/Log/Test/LoggerInterfaceTest.php
+++ b/Psr/Log/Test/LoggerInterfaceTest.php
@@ -4,6 +4,7 @@ namespace Psr\Log\Test;
use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;
+use PHPUnit\Framework\TestCase;
/**
* Provides a base test class for ensuring compliance with the LoggerInterface.
@@ -11,7 +12,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 TestCase
{
/**
* @return LoggerInterface
|