Some work

This commit is contained in:
Alex Solomaha
2016-08-19 17:48:27 +03:00
parent c5ae61fddb
commit aa2b4c40fc
5 changed files with 92 additions and 77 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace app\components;
interface ApiHelperInterface
{
public function getCurl($timeout = 2);
public function getBaseUrl();
public function makeRequestToApi($url);
public function getValue();
}