Version produccion

This commit is contained in:
2023-06-16 00:53:21 +00:00
parent 4806784b68
commit 15dfefe517
38 changed files with 848 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?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;
}
}