1 <?php
2
3 /**
4 * POS integration with WooCommerce Bookings
5 *
6 * @class WC_POS_Integrations_Bookings
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\Integrations;
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit; // Exit if accessed directly
16 }
17
18 class Bookings {
19
20 /**
21 * Constructor
22 */
23 public function __construct() {
24
25 }
26
27 }