Files
SmartHomePHP/components/ApiHelperInterface.php
Alex Solomaha aa2b4c40fc Some work
2016-08-19 17:48:27 +03:00

12 lines
220 B
PHP

<?php
namespace app\components;
interface ApiHelperInterface
{
public function getCurl($timeout = 2);
public function getBaseUrl();
public function makeRequestToApi($url);
public function getValue();
}