for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Http\Factory\Discovery;
use PHPUnit\Framework\TestCase;
class HttpClientTest extends TestCase
{
public function testCanDiscoverClient(): void
$this->assertSame(HttpClient::client(), HttpClient::client());
}