Files
piratepoet/packages/php/email-editor/tests/unit/_bootstrap.php
Jan Lysý 113dbaae2d Change coding style in email editor tests to WordPress
This commit contains automated changes made with phpcbf command from CodeSniffer package.

[MAILPOET-6240]
2024-11-08 14:06:45 +01:00

17 lines
373 B
PHP

<?php declare(strict_types = 1);
$console = new \Codeception\Lib\Console\Output( array() );
if ( ! function_exists( 'esc_attr' ) ) {
function esc_attr( $attr ) {
return $attr;
}
}
abstract class MailPoetUnitTest extends \Codeception\TestCase\Test {
protected $runTestInSeparateProcess = false;
protected $preserveGlobalState = false;
}
require '_stubs.php';