for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
use PHPUnit\Framework\TestCase;
use rOpenDev\Google\SafeBrowsing;
final class SafeBrowsingTest extends TestCase
{
public function testResult(): void
$result = SafeBrowsing::get('https://piedweb.com');
$this->assertEquals(true, $result);
}