mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
overwrite phpunit junit logging with noop
This commit is contained in:
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
16
overrides/Logging/JUnit/JunitXmlLogger.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PHPUnit\Logging\JUnit;
|
||||
|
||||
use PHPUnit\Event\Facade;
|
||||
use PHPUnit\TextUI\Output\Printer;
|
||||
|
||||
final class JunitXmlLogger
|
||||
{
|
||||
public function __construct(Printer $printer, Facade $facade)
|
||||
{
|
||||
/** @see \Pest\Logging\JUnit\JUnitLogger */
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user