VatIdNoAwareInterface
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  
setVatIdNo() 0 1 ?
setTaxNo() 0 1 ?
1
<?php
2
namespace Germania\VatIdNo;
3
4
interface VatIdNoAwareInterface extends VatIdNoProviderInterface
5
{
6
    /**
7
     * Sets the VAT ID number.
8
     *
9
     * @param  string $vatin VAT ID number
10
     * @return self   Fluent interface
11
     */
12
    public function setVatIdNo($vatin);
13
14
    /**
15
     * Sets the tax number.
16
     *
17
     * @param  string $taxno Tax number
18
     * @return self   Fluent interface
19
     */
20
    public function setTaxNo($taxno);
21
}
22