Change coding style in email editor tests to WordPress
This commit contains automated changes made with phpcbf command from CodeSniffer package. [MAILPOET-6240]
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
<?php declare(strict_types = 1);
|
||||
|
||||
$console = new \Codeception\Lib\Console\Output([]);
|
||||
$console = new \Codeception\Lib\Console\Output( array() );
|
||||
|
||||
if (!function_exists('esc_attr')) {
|
||||
function esc_attr($attr) {
|
||||
return $attr;
|
||||
}
|
||||
if ( ! function_exists( 'esc_attr' ) ) {
|
||||
function esc_attr( $attr ) {
|
||||
return $attr;
|
||||
}
|
||||
}
|
||||
|
||||
abstract class MailPoetUnitTest extends \Codeception\TestCase\Test {
|
||||
protected $runTestInSeparateProcess = false;
|
||||
protected $preserveGlobalState = false;
|
||||
protected $runTestInSeparateProcess = false;
|
||||
protected $preserveGlobalState = false;
|
||||
}
|
||||
|
||||
include '_stubs.php';
|
||||
require '_stubs.php';
|
||||
|
Reference in New Issue
Block a user