Automattic\WooCommerce\Internal\DataStores\Orders
OrdersTableDataStore::get_order_table_alias
Helper function to get alias for order table, this is used in select query.
Method of the class: OrdersTableDataStore{}
No Hooks.
Returns
String. Alias.
Usage
// private - for code of main (parent) class only $result = $this->get_order_table_alias(): string;
OrdersTableDataStore::get_order_table_alias() OrdersTableDataStore::get order table alias code WC 10.3.3
private function get_order_table_alias(): string {
return 'o';
}