for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ray\AuraSqlModule;
use Aura\Sql\Profiler\ProfilerInterface;
use Ray\Di\AbstractModule;
class AuraSqlProfileModule extends AbstractModule
{
/**
* {@inheritDoc}
*/
protected function configure(): void
$this->bind(ProfilerInterface::class)->toProvider(ProfilerProvider::class);
}