1<?php
2
3namespace ComboStrap;
4
5/**
6 * A fetcher that return a strings
7 * (all ajax call should implements this interface)
8 */
9interface IFetcherString extends IFetcher
10{
11
12    public function getFetchString(): string;
13
14}
15