Unverified Commit cbccba94 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3182653 by longwave, Eli-T, devad: PHPUnit 9.4.3 Fatal error: Trait...

Issue #3182653 by longwave, Eli-T, devad: PHPUnit 9.4.3 Fatal error: Trait 'Prophecy\PhpUnit\ProphecyTrait' not found
parent 3b82a3b9
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -4,6 +4,12 @@

use Prophecy\PhpUnit\ProphecyTrait;

// @todo Replace with a proper dependency when we stop supporting PHPUnit 8.
if (!trait_exists(ProphecyTrait::class)) {
  print "Drupal requires Prophecy PhpUnit when using PHPUnit 9 or greater. Please use 'composer require --dev phpspec/prophecy-phpunit:^2' to ensure that it is present.\n";
  exit(1);
}

/**
 * Drupal's forward compatibility layer with multiple versions of PHPUnit.
 */