for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\Integration;
use Dotenv\Dotenv;
use Tests\TestCase;
abstract class IntegrationTestCase extends TestCase
{
protected function loadEnv(): void
if ($_ENV['CI'] == true) {
return;
}
$dotenv = Dotenv::createImmutable(__DIR__ . '/../..');
$dotenv->load();