File: /home/petsclubcc/magento/vendor/magento/module-user/Model/System/Config/Source/Password.php
<?php
/**
* Copyright © 2016 Magento. 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')]];
}
}