Files
money/common/Implementation/Handler.php
2023-06-16 00:53:21 +00:00

14 lines
375 B
PHP

<?php
namespace Aldarien\Money\Common\Implementation;
use GuzzleHttp\ClientInterface as Client;
use Aldarien\Money\Common\Definition\Handler as HandlerInterface;
abstract class Handler implements HandlerInterface {
protected $url;
public function __construct(Client $client, string $api_url) {
$this->client = $client;
$this->url = $api_url;
}
}