Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/Data/Argument/Interpreter/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Data/Argument/Interpreter/NullType.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Framework\Data\Argument\Interpreter;

use Magento\Framework\Data\Argument\InterpreterInterface;

/**
 * Interpreter of NULL data type
 */
class NullType implements InterpreterInterface
{
    /**
     * {@inheritdoc}
     * @return null
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function evaluate(array $data)
    {
        return null;
    }
}