| Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/Price/ |
| Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/Price/Scope.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Config\Source\Price;
class Scope implements \Magento\Framework\Option\ArrayInterface
{
/**
* {@inheritdoc}
*
* @codeCoverageIgnore
*/
public function toOptionArray()
{
return [['value' => '0', 'label' => __('Global')], ['value' => '1', 'label' => __('Website')]];
}
}