1: <?php 2: 3: namespace Magyarjeti\Loripsum\Http; 4: 5: /** 6: * Interface for HTTP adapters. 7: */ 8: interface AdapterInterface 9: { 10: /** 11: * Make a HTTP request. 12: * 13: * @param string $url 14: * @return string Response body. 15: */ 16: public function request($url); 17: } 18: