uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
ibericode
/
vat
/
src
/
Rates
/
.
/
Interfaces
/
Client.php
/
/
<?php namespace DvK\Vat\Rates\Interfaces; use DvK\Vat\Rates\Exceptions\ClientException; /** * Interface Client * * @package DvK\Vat\Rates\Interfaces */ interface Client { /** * This methods should return an associative array in the following format: * * [ * 'NL' => [ * 'name' => 'Netherlands', * 'code' => 'NL', * 'country_code' => 'NL', * 'periods' => [ * [ * 'effective_from' => '2012-10-01', * 'rates' => [ * 'reduced' => 6.0, * 'standard' => 21.0, * ], * ], * [ * 'effective_from' => '0000-01-01', * 'rates' => [ * 'reduced' => 5.0, * 'standard' => 19.0, * ], * ], * ], * ] * ] * * * @throws ClientException * * @return array */ public function fetch() : array; }
/srv/users/craft4/apps/craft4-newsite-space/vendor/ibericode/vat/src/Rates/./Interfaces/Client.php