From d73cf448fc3a2b56413c39cd30065b8ea31509fd Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sun, 27 Jan 2019 10:05:58 +0100 Subject: [PATCH] Closes #3388 --- ChangeLog-8.0.md | 1 + src/Framework/TestListener.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog-8.0.md b/ChangeLog-8.0.md index 0781789b3fd..d2528daa1a6 100644 --- a/ChangeLog-8.0.md +++ b/ChangeLog-8.0.md @@ -15,6 +15,7 @@ All notable changes of the PHPUnit 8.0 release series are documented in this fil * Implemented [#3338](https://github.com/sebastianbergmann/phpunit/issues/3338): Deprecate assertions (and helper methods) that operate on (non-public) attributes * Implemented [#3341](https://github.com/sebastianbergmann/phpunit/issues/3341): Deprecate optional parameters of `assertEquals()` and `assertNotEquals()` * Implemented [#3369](https://github.com/sebastianbergmann/phpunit/issues/3369): Deprecate `assertInternalType()` and `assertNotInternalType()` +* Implemented [#3388](https://github.com/sebastianbergmann/phpunit/issues/3388): Deprecate the `TestListener` interface * Implemented [#3425](https://github.com/sebastianbergmann/phpunit/issues/3425): Deprecate optional parameters of `assertContains()` and `assertNotContains()` as well as using these methods with `string` haystacks * Implemented [#3439](https://github.com/sebastianbergmann/phpunit/pull/3439): Improve colorization of TestDox output * Implemented [#3444](https://github.com/sebastianbergmann/phpunit/pull/3444): Consider data provider that provides data with duplicate keys to be invalid diff --git a/src/Framework/TestListener.php b/src/Framework/TestListener.php index eeb9f203913..7415282c5e3 100644 --- a/src/Framework/TestListener.php +++ b/src/Framework/TestListener.php @@ -10,7 +10,8 @@ namespace PHPUnit\Framework; /** - * A Listener for test progress. + * @deprecated + * @internal */ interface TestListener {