magento2-docker/app/code/Kai/Banner/Api/BannerRepositoryInterface.php

24 lines
283 B
PHP
Executable File

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