15 lines
183 B
PHP
15 lines
183 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Anand\LaravelPaytmWallet\Contracts;
|
||
|
|
|
||
|
|
interface Provider
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Return raw response.
|
||
|
|
*
|
||
|
|
* @return object
|
||
|
|
*/
|
||
|
|
public function response();
|
||
|
|
|
||
|
|
}
|