Files
business-data-fetcher/example.php
Ismo Vuorinen aa6786981a feat: parser now writes, added missing fields
updated docs, example, extensive use of Traits with better handling.
valid level 9 phpstan codebase.
2024-08-18 18:23:05 +03:00

12 lines
246 B
PHP

<?php
require_once "vendor/autoload.php";
$client = new Ivuorinen\BusinessDataFetcher\BusinessDataFetcher();
try {
$results = $client->getBusinessInformation("1639413-9");
print_r($results);
} catch (Exception $e) {
var_dump($e);
}