VatIdNoProviderInterface
last analyzed

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getVatIdNo() 0 1 ?
getTaxNo() 0 1 ?
1
<?php
2
namespace Germania\VatIdNo;
3
4
interface VatIdNoProviderInterface
5
{
6
7
    /**
8
     * Returns the VAT ID number.
9
     *
10
     * @return string
11
     */
12
    public function getVatIdNo();
13
14
15
    /**
16
     * Returns the tax number.
17
     *
18
     * @return string
19
     */
20
    public function getTaxNo();
21
}
22