Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHPUnit Cannot acquire reference to $GLOBALS

I am getting an error when running PHPUnit tests on GitHub actions.

PHP Fatal error:  Cannot acquire reference to $GLOBALS in /home/runner/work/project-name/project-name/vendor/phpunit/phpunit/src/Util/Configuration.php on line 570

It seems like this error is likely related to PHP8 (https://php.watch/versions/8.1/GLOBALS-restrictions), but the test matrix should only be running PHP 7.2 and 7.4 (tests run fine locally on PHP 7.4).

Error shown here in GitHub Actions. Testing matrix is here.

Any help much appreciated!

--

Edit:

Resolved this by specifically setting the PHP Version in the container as the first step:

# PHPUnit errors with latest PHP 8.X build.
# This specifically sets PHP version to 7.4.
- name: Setup PHP with tools
uses: shivammathur/setup-php@v2
with:
    php-version: '7.4'
    tools: phpunit
like image 410
Devin Price Avatar asked Dec 02 '25 12:12

Devin Price


1 Answers

You are using PHPUnit 7.5.20 which is not compatible with PHP 8.

like image 103
Sebastian Bergmann Avatar answered Dec 05 '25 02:12

Sebastian Bergmann



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!