for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace RemotelyLiving\PHPCommandBus\Tests\Unit;
use PHPUnit;
use Psr\Log;
abstract class AbstractTestCase extends PHPUnit\Framework\TestCase
{
public function createTestLogger(): Log\Test\TestLogger
return new Log\Test\TestLogger();
}