1 <?php
2
3 /**
4 * Receipt Template Class
5 *
6 * @class WC_POS_Admin_Settings_Receipt_Template
7 * @package WooCommerce POS
8 * @author Paul Kilmurray <paul@kilbot.com.au>
9 * @link http://www.woopos.com.au
10 */
11
12 namespace WC_POS\Admin\Settings\Receipt;
13
14 use WC_POS\Admin\Settings\Page;
15
16 class Template extends Page {
17
18 protected static $instance;
19
20 /**
21 * @param
22 */
23 public function __construct() {
24 $this->id = 'receipt_template';
25 $this->label = __( 'Receipt Template', 'woocommerce-pos' );
26 }
27
28 }