magento2-docker/app/code/IpSupply/SyncOrder/Api/RepositoryInterface.php

25 lines
331 B
PHP
Executable File

<?php
namespace IpSupply\SyncOrder\Api;
use Magento\Framework\Exception\LocalizedException;
/**
* @api
*/
interface RepositoryInterface
{
/**
* method: GET
*
* @return string
*/
public function getData();
/**
* method: POST
* @return string
*/
public function postData();
}