| 1 | <?php  | 
            ||
| 20 | trait FloatVatTotalTrait { | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * VAT total.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @var float  | 
            ||
| 26 | */  | 
            ||
| 27 | protected $vatTotal;  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | * Get the VAT total.  | 
            ||
| 31 | *  | 
            ||
| 32 | * @return float Returns the VAT total.  | 
            ||
| 33 | */  | 
            ||
| 34 |     public function getVatTotal() { | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * Set the VAT total.  | 
            ||
| 40 | *  | 
            ||
| 41 | * @param float $vatTotal The VAT total.  | 
            ||
| 42 | */  | 
            ||
| 43 |     public function setVatTotal($vatTotal) { | 
            ||
| 47 | }  | 
            ||
| 48 |