mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 08:34:02 +01:00
12 lines
220 B
PHP
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();
|
|
}
|