VatIdNoAwareInterface::setTaxNo()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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