This commit contains automated changes made with phpcbf command from CodeSniffer package. [MAILPOET-6240]
17 lines
373 B
PHP
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';
|