Files
cf7-spam-to-telegram/tests/Cf7stgTestCase.php
T
2026-04-21 15:51:46 +05:00

16 lines
252 B
PHP

<?php
declare(strict_types=1);
namespace Cf7stg\Tests;
use PHPUnit\Framework\TestCase;
abstract class Cf7stgTestCase extends TestCase
{
protected function setUp(): void
{
parent::setUp();
\Cf7stgWpShimState::reset();
}
}