Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/framework/Setup/SchemaListenerDefinition/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Setup/SchemaListenerDefinition/DateDefinition.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Framework\Setup\SchemaListenerDefinition;

/**
 * Date type definition.
 */
class DateDefinition implements DefinitionConverterInterface
{
    /**
     * @inheritdoc
     */
    public function convertToDefinition(array $definition)
    {
        return [
            'xsi:type' => 'date',
            'name' => $definition['name'],
        ];
    }
}