Laralabs/get-address-io

View on GitHub
src/Helpers/functions.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Laralabs\GetAddress\GetAddress;

if (!function_exists('get_address')) {
    function get_address(?string $apiKey = null): GetAddress
    {
        return app('getaddress', ['apiKey' => $apiKey]);
    }
}