Files
f583628199 chore: implement WPGraphQL Coding Standards (#769)
* 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>
2023-07-19 17:11:25 -04:00

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();
}