/var/www/html_uk/wp-content/plugins/automatewoo/includes/Customer_Query.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
// phpcs:ignoreFile

namespace AutomateWoo;

if ( ! 
defined'ABSPATH' ) ) exit;

/**
 * @class Customer_Query
 * @since 3.0.0
 */
class Customer_Query extends Query_Abstract {

    
/** @var string */
    
public $table_id 'customers';

    protected 
$model 'AutomateWoo\Customer';


    
/**
     * @return Customer[]
     */
    
function get_results() {
        return 
parent::get_results();
    }

}