25 lines
331 B
PHP
Executable File
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();
|
|
}
|