Version produccion
This commit is contained in:
13
common/Implementation/Handler.php
Normal file
13
common/Implementation/Handler.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user