magento2-docker/app/code/IpSupply/ChatMessage/Helper/Request/ParametersInterface.php

26 lines
556 B
PHP
Executable File

<?php
namespace IpSupply\ChatMessage\Helper\Request;
use IpSupply\ChatMessage\Helper\Authentication;
interface ParametersInterface {
/**
* @return array
*/
public function getData();
/**
* Set auth creds to use for specific request
*
* @param Authentication $authentication
* @return void
*/
public function setAuthentication(Authentication $authentication);
/**
* Return the authentication params to use
*
* @return Authentication
*/
public function getAuthentication();
}