| 1 | <?php |
||
| 12 | class ShariffService implements ShariffServiceInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var ShariffConfig |
||
| 16 | */ |
||
| 17 | protected $config; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param ShariffConfig $config |
||
| 21 | */ |
||
| 22 | public function __construct(ShariffConfig $config) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get the information from the backend for the given url |
||
| 29 | * |
||
| 30 | * @param string $url |
||
| 31 | * |
||
| 32 | * @return array |
||
| 33 | */ |
||
| 34 | public function get($url) |
||
| 44 | } |
||
| 45 |