LingotekHttpInterface.php in Lingotek Translation 8.2
Same filename and directory in other branches
- 8 src/Remote/LingotekHttpInterface.php
- 4.0.x src/Remote/LingotekHttpInterface.php
- 3.0.x src/Remote/LingotekHttpInterface.php
- 3.1.x src/Remote/LingotekHttpInterface.php
- 3.2.x src/Remote/LingotekHttpInterface.php
- 3.3.x src/Remote/LingotekHttpInterface.php
- 3.4.x src/Remote/LingotekHttpInterface.php
- 3.5.x src/Remote/LingotekHttpInterface.php
- 3.6.x src/Remote/LingotekHttpInterface.php
- 3.7.x src/Remote/LingotekHttpInterface.php
- 3.8.x src/Remote/LingotekHttpInterface.php
Namespace
Drupal\lingotek\RemoteFile
src/Remote/LingotekHttpInterface.phpView source
<?php
namespace Drupal\lingotek\Remote;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* a simple interface to http functions
*
*@since 0.1
*/
interface LingotekHttpInterface {
public static function create(ContainerInterface $container);
public function get($path, $args = []);
public function post($path, $args = []);
public function delete($path, $args = []);
public function patch($path, $args = []);
public function getCurrentToken();
}
Interfaces
Name | Description |
---|---|
LingotekHttpInterface | a simple interface to http functions |