| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Data/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Data/OptionSourceInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Framework\Data;
/**
* Source of option values in a form of value-label pairs
*
* @api
* @since 100.0.2
*/
interface OptionSourceInterface
{
/**
* Return array of options as value-label pairs
*
* @return array Format: array(array('value' => '<value>', 'label' => '<label>'), ...)
*/
public function toOptionArray();
}