12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * Source model for admin password change mode
- *
- * @codeCoverageIgnore
- */
- namespace Magento\User\Model\System\Config\Source;
- class Password extends \Magento\Framework\DataObject implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * Get options for select
- *
- * @return array
- */
- public function toOptionArray()
- {
- return [['value' => 0, 'label' => __('Recommended')], ['value' => 1, 'label' => __('Forced')]];
- }
- }
|