| Current Path : /home/rtorresani/www/vendor/paypal/module-braintree-core/Model/Config/Source/ |
| Current File : //home/rtorresani/www/vendor/paypal/module-braintree-core/Model/Config/Source/Layout.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace PayPal\Braintree\Model\Config\Source;
use Magento\Framework\Option\ArrayInterface;
class Layout implements ArrayInterface
{
/**
* Options getter
*
* @return array
*/
public function toOptionArray(): array
{
return [
[
'value' => 'vertical',
'label' => __('Vertical'),
],
[
'value' => 'horizontal',
'label' => __('Horizontal'),
]
];
}
}