AstroFields/Core

View on GitHub
src/Providers/OptionAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace WCM\AstroFields\Core\Providers;

/**
 * Interface OptionAwareInterface
 * The basic interface something that comes with options.
 * Common examples are Radio Buttons, Select form fields
 * Checkbox sets or lists.
 * Use this as indicator/recipe for key/value a storage.
 * @package WCM\AstroFields\Core\Providers
 */
interface OptionAwareInterface extends EntityProviderInterface
{
    public function getOptions();
}