Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/magento/module-eav/Model/Entity/Setup/
Upload File :
Current File : /var/www/html/vendor/magento/module-eav/Model/Entity/Setup/PropertyMapperAbstract.php

<?php
/**
 * Abstract attribute property mapper
 *
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Eav\Model\Entity\Setup;

/**
 * @inheritdoc
 */
abstract class PropertyMapperAbstract implements PropertyMapperInterface
{
    /**
     * Retrieve value from array by key or return default value
     *
     * @param array $array
     * @param string $key
     * @param string $default
     * @return string
     */
    protected function _getValue($array, $key, $default = null)
    {
        if (isset($array[$key]) && is_bool($array[$key])) {
            $array[$key] = (int)$array[$key];
        }
        return $array[$key] ?? $default;
    }
}