Jake Vanderwerf
2026-01-02 b5abd615697146beeca6dba4acd057d049554a30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
namespace JVBase\registry\providers;
 
if (!defined('ABSPATH')) {
    exit;
}
 
/**
 * Interface for field providers
 */
interface FieldProviderInterface
{
    public function getFields(...$args): array;
}