namespace Automattic\WooCommerce\Blocks\Templates;
* AbstractTemplate class.
* Shared logic for templates.
abstract class AbstractTemplate {
* The slug of the template.
abstract public function init();
* Should return the title of the template.
abstract public function get_template_title();
* Should return the description of the template.
abstract public function get_template_description();