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

24 lines
285 B
PHP
Executable File

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