Skip to content

Commit

Permalink
Closes #3352
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 7, 2019
1 parent ca16574 commit a6465d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog-7.5.md
Expand Up @@ -6,6 +6,7 @@ All notable changes of the PHPUnit 7.5 release series are documented in this fil

### Fixed

* Fixed [#3352](https://github.com/sebastianbergmann/phpunit/issues/3352): Using `phpunit.phar` with PHPDBG does not work with `auto_globals_jit=On`
* Fixed [#3502](https://github.com/sebastianbergmann/phpunit/issues/3502): Numeric `@ticket` or `@group` annotations no longer work

## [7.5.3] - 2019-02-01
Expand Down
2 changes: 1 addition & 1 deletion build/binary-phar-autoload.php.in
Expand Up @@ -15,7 +15,7 @@ if (version_compare('7.1.0', PHP_VERSION, '>')) {
die(1);
}

if (__FILE__ === realpath($GLOBALS['_SERVER']['SCRIPT_NAME'])) {
if (__FILE__ === realpath($_SERVER['SCRIPT_NAME'])) {
$execute = true;
} else {
$execute = false;
Expand Down

0 comments on commit a6465d9

Please sign in to comment.