| Current Path : /var/www/clients/client3/web2/web/vendor/magento/module-config/Model/Config/Source/Dev/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/module-config/Model/Config/Source/Dev/Dbautoup.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Config\Model\Config\Source\Dev;
/**
* @api
* @since 100.0.2
*/
class Dbautoup implements \Magento\Framework\Option\ArrayInterface
{
/**
* @return array
*/
public function toOptionArray()
{
return [
[
'value' => \Magento\Framework\App\ResourceConnection::AUTO_UPDATE_ALWAYS,
'label' => __('Always (during development)')
],
[
'value' => \Magento\Framework\App\ResourceConnection::AUTO_UPDATE_ONCE,
'label' => __('Only Once (version upgrade)')
],
[
'value' => \Magento\Framework\App\ResourceConnection::AUTO_UPDATE_NEVER,
'label' => __('Never (production)')
]
];
}
}