From 0f609d2dd45f1eb93710b18d976d3768172b2359 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Wed, 8 Jan 2020 09:45:18 +0100 Subject: [PATCH] Delete eval-stdin.php --- ChangeLog-7.5.md | 7 +++++++ src/Util/PHP/eval-stdin.php | 14 -------------- 2 files changed, 7 insertions(+), 14 deletions(-) delete mode 100644 src/Util/PHP/eval-stdin.php diff --git a/ChangeLog-7.5.md b/ChangeLog-7.5.md index 5d8d05dbd23..b8abeeaba1c 100644 --- a/ChangeLog-7.5.md +++ b/ChangeLog-7.5.md @@ -2,6 +2,12 @@ All notable changes of the PHPUnit 7.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles. +## [7.5.20] - 2020-MM-DD + +### Removed + +* `eval-stdin.php` has been removed, it was not used anymore since PHPUnit 7.2.7 + ## [7.5.19] - 2020-01-06 ### Changed @@ -165,6 +171,7 @@ All notable changes of the PHPUnit 7.5 release series are documented in this fil * Fixed [#3429](https://github.com/sebastianbergmann/phpunit/pull/3429): Inefficient loop in `getHookMethods()` * Fixed [#3437](https://github.com/sebastianbergmann/phpunit/pull/3437): JUnit logger skips PHPT tests +[7.5.20]: https://github.com/sebastianbergmann/phpunit/compare/7.5.19...7.5.20 [7.5.19]: https://github.com/sebastianbergmann/phpunit/compare/7.5.18...7.5.19 [7.5.18]: https://github.com/sebastianbergmann/phpunit/compare/7.5.17...7.5.18 [7.5.17]: https://github.com/sebastianbergmann/phpunit/compare/7.5.16...7.5.17 diff --git a/src/Util/PHP/eval-stdin.php b/src/Util/PHP/eval-stdin.php deleted file mode 100644 index 51830820d07..00000000000 --- a/src/Util/PHP/eval-stdin.php +++ /dev/null @@ -1,14 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ -if (\PHP_SAPI !== 'cli' && \PHP_SAPI !== 'phpdbg') { - exit(1); -} - -eval('?>' . \file_get_contents('php://stdin'));