Exceptions
1 year ago
PaymentsProviders
3 months ago
SettingsUIPages
4 weeks ago
LegacySettingsPageAdapter.php
4 weeks ago
Payments.php
3 months ago
PaymentsController.php
11 months ago
PaymentsProviders.php
2 months ago
PaymentsRestController.php
3 months ago
RegisteredSettingsSectionAdapter.php
2 weeks ago
SettingsUIPageInterface.php
4 weeks ago
SettingsUIRequestContext.php
2 weeks ago
SettingsUISchema.php
2 weeks ago
Utils.php
2 months ago
SettingsUIPageInterface.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Settings UI page contract. |
| 4 | */ |
| 5 | |
| 6 | declare( strict_types=1 ); |
| 7 | |
| 8 | namespace Automattic\WooCommerce\Internal\Admin\Settings; |
| 9 | |
| 10 | use Automattic\WooCommerce\Admin\Settings\SettingsUIPageInterface as PublicSettingsUIPageInterface; |
| 11 | |
| 12 | defined( 'ABSPATH' ) || exit; |
| 13 | |
| 14 | /** |
| 15 | * Internal alias for the public settings UI page contract. |
| 16 | * |
| 17 | * @since 10.9.0 |
| 18 | */ |
| 19 | interface SettingsUIPageInterface extends PublicSettingsUIPageInterface {} |
| 20 |