14 lines
243 B
PHP
14 lines
243 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Service\Signature;
|
||
|
|
|
||
|
|
class Client
|
||
|
|
{
|
||
|
|
private \Docuseal\Api $client;
|
||
|
|
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->client = new \Docuseal\Api($_ENV['ESYSIGN_APIEY'],'https://signature.esy-wev.dev/api');
|
||
|
|
}
|
||
|
|
}
|