Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Qmp\Laravel\Geolocation\Services\GeolocApiServices;
3
4interface ServiceInterface
5{
6    public function input($value);
7
8    public function value($value);
9
10    public function output(array $value);
11}