| Current Path : /home/rtorresani/www/vendor/magento/module-config/Model/Config/Backend/ |
| Current File : //home/rtorresani/www/vendor/magento/module-config/Model/Config/Backend/Image.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/**
* System config image field backend model
*/
namespace Magento\Config\Model\Config\Backend;
/**
* @api
* @since 100.0.2
*/
class Image extends File
{
/**
* Getter for allowed extensions of uploaded files
*
* @return string[]
*/
protected function _getAllowedExtensions()
{
return ['jpg', 'jpeg', 'gif', 'png'];
}
}