SimpletestUiPrinter.php 327 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\TestTools\PhpUnitCompatibility\PhpUnit7;
  3. /**
  4. * Defines a class for providing html output links in the Simpletest UI.
  5. */
  6. class SimpletestUiPrinter extends HtmlOutputPrinter {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function write(string $buffer): void {
  11. $this->simpletestUiWrite($buffer);
  12. }
  13. }