Files
piratepoet/packages/php/email-editor/tests/unit/_stubs.php
2024-11-08 14:06:45 +01:00

34 lines
474 B
PHP

<?php
/**
* This file is part of the MailPoet plugin.
*
* @package MailPoet\EmailEditor
*/
declare(strict_types = 1);
// Dummy WP classes.
if ( ! class_exists( \WP_Theme_JSON::class ) ) {
/**
* Class WP_Theme_JSON
*/
class WP_Theme_JSON {
/**
* Get data.
*
* @return array
*/
public function get_data() {
return array();
}
/**
* Get settings.
*
* @return array
*/
public function get_settings() {
return array();
}
}
}