15 lines
342 B
PHP
15 lines
342 B
PHP
![]() |
<?php
|
||
|
namespace ProVM\Integration;
|
||
|
|
||
|
use Psr\Http\Client\ClientInterface;
|
||
|
use GuzzleHttp\Client;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
abstract class AbstractIntegration extends TestCase
|
||
|
{
|
||
|
protected ClientInterface $client;
|
||
|
protected function setUp(): void
|
||
|
{
|
||
|
$this->client = new Client(['base_uri' => $_ENV['APP_URL']]);
|
||
|
}
|
||
|
}
|