mirror of
https://github.com/wp-graphql/wp-graphql-woocommerce.git
synced 2026-08-14 12:53:44 +02:00
* chore: avoid magic constants [PHPCS] * chore: change ruleset to wp-graphql-cs and lint * devops: HPOS added back to CI with the release of WC 3.9 --------- Co-authored-by: Geoff Taylor <geoff@axistaylor.com>
21 lines
335 B
PHP
21 lines
335 B
PHP
<?php
|
|
/**
|
|
* The section defines the root functionality for a settings section
|
|
*
|
|
* @package WPGraphQL\WooCommerce\Admin
|
|
*/
|
|
|
|
namespace WPGraphQL\WooCommerce\Admin;
|
|
|
|
/**
|
|
* Section class
|
|
*/
|
|
abstract class Section {
|
|
/**
|
|
* Returns Section settings fields.
|
|
*
|
|
* @return array
|
|
*/
|
|
abstract public static function get_fields();
|
|
}
|