15 lines
285 B
PHP
Executable File
15 lines
285 B
PHP
Executable File
<?php
|
|
|
|
namespace MauticPlugin\MauticCrmBundle\Services;
|
|
|
|
interface TransportInterface
|
|
{
|
|
public function post($uri, array $options);
|
|
|
|
public function put($uri, array $options);
|
|
|
|
public function get($uri, array $options);
|
|
|
|
public function delete($uri, array $options);
|
|
}
|