Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/framework/Webapi/Test/Unit/ServiceInputProcessor/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/framework/Webapi/Test/Unit/ServiceInputProcessor/DataArray.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Framework\Webapi\Test\Unit\ServiceInputProcessor;

use Magento\Framework\Api\AbstractExtensibleObject;

class DataArray extends AbstractExtensibleObject
{
    /**
     * @return \Magento\Framework\Webapi\Test\Unit\ServiceInputProcessor\Simple[]|null
     */
    public function getItems()
    {
        return $this->_get('items');
    }

    /**
     * @param \Magento\Webapi\Service\Entity\Simple[] $items
     * @return $this
     */
    public function setItems(array $items = null)
    {
        return $this->setData('items', $items);
    }
}