1
0
mirror of synced 2024-11-29 00:25:30 +03:00
magento-module/Model/Setting/ApiVersions.php

15 lines
298 B
PHP
Raw Normal View History

2018-03-12 16:34:48 +03:00
<?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']
];
}
}