1
0
mirror of synced 2024-11-25 06:26:07 +03:00
magento-module/Model/Setting/ApiVersions.php
2018-03-12 16:34:48 +03:00

15 lines
298 B
PHP

<?php
namespace Retailcrm\Retailcrm\Model\Setting;
class ApiVersions implements \Magento\Framework\Option\ArrayInterface
{
public function toOptionArray()
{
return [
['value' => 'v4', 'label' => 'v4'],
['value' => 'v5', 'label' => 'v5']
];
}
}