Automattic\WooCommerce\Internal\Admin\ProductReviews

Reviews::make_reviews_list_table()protectedWC 1.0

Returns a new instance of ReviewsListTable, with the screen argument specified.

Method of the class: Reviews{}

No Hooks.

Return

ReviewsListTable.

Usage

// protected - for code of main (parent) or child class
$result = $this->make_reviews_list_table() : ReviewsListTable;

Reviews::make_reviews_list_table() code WC 8.7.0

protected function make_reviews_list_table() : ReviewsListTable {
	return new ReviewsListTable( [ 'screen' => $this->reviews_page_hook ? $this->reviews_page_hook : 'product_page_product-reviews' ] );
}