From d4f124678a78b463156413afd87448cf259053b4 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 21 Sep 2023 23:11:50 +0200 Subject: [PATCH] CS/QA: remove unused import use statements (1.x branch only) --- src/Polyfills/AssertObjectProperty.php | 1 - tests/Polyfills/AssertObjectPropertyTest.php | 3 --- 2 files changed, 4 deletions(-) diff --git a/src/Polyfills/AssertObjectProperty.php b/src/Polyfills/AssertObjectProperty.php index e80a98c..f682eb4 100644 --- a/src/Polyfills/AssertObjectProperty.php +++ b/src/Polyfills/AssertObjectProperty.php @@ -2,7 +2,6 @@ namespace Yoast\PHPUnitPolyfills\Polyfills; -use PHPUnit\Framework\Assert; use ReflectionObject; use TypeError; use Yoast\PHPUnitPolyfills\Autoload; diff --git a/tests/Polyfills/AssertObjectPropertyTest.php b/tests/Polyfills/AssertObjectPropertyTest.php index 0c018d4..1a58cad 100644 --- a/tests/Polyfills/AssertObjectPropertyTest.php +++ b/tests/Polyfills/AssertObjectPropertyTest.php @@ -2,12 +2,9 @@ namespace Yoast\PHPUnitPolyfills\Tests\Polyfills; -use PHPUnit\Framework\AssertionFailedError; use PHPUnit\Framework\TestCase; use PHPUnit\Runner\Version as PHPUnit_Version; -use PHPUnit_Framework_AssertionFailedError; use stdClass; -use TypeError; use Yoast\PHPUnitPolyfills\Polyfills\AssertObjectProperty; use Yoast\PHPUnitPolyfills\Polyfills\ExpectException; use Yoast\PHPUnitPolyfills\Polyfills\ExpectExceptionMessageMatches;