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 Ray\AuraSqlModule\Annotation\Transactional;
use Ray\Di\AbstractModule;
class TransactionalModule extends AbstractModule
{
/**
* {@inheritDoc}
*/
protected function configure(): void
// @Transactional
$this->bindInterceptor(
$this->matcher->any(),
$this->matcher->annotatedWith(Transactional::class),
[TransactionalInterceptor::class],
);
}