| Current Path : /home/rtorresani/www/vendor/magento/module-config/Model/Config/Source/Web/ |
| Current File : //home/rtorresani/www/vendor/magento/module-config/Model/Config/Source/Web/Redirect.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Config\Model\Config\Source\Web;
/**
* @api
* @since 100.0.2
*/
class Redirect implements \Magento\Framework\Option\ArrayInterface
{
/**
* @return array
*/
public function toOptionArray()
{
return [
['value' => 0, 'label' => __('No')],
['value' => 1, 'label' => __('Yes (302 Found)')],
['value' => 301, 'label' => __('Yes (301 Moved Permanently)')]
];
}
}