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
2
3/**
4 * This is an integration interface for Via Cep service api. This API integration make requests to via cep web api and
5 * retrieve it's values.
6 */
7interface iViaCepIntegration
8{
9    /**
10     * Get address information given a zip code. It returns an array like structure mapped by key => value.
11     */
12    public function getAddressByZipCode(string $zipCode): array;
13}