2026-04-09 18:31:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Doctrine\Bundle\DoctrineBundle\Attribute;
|
|
|
|
|
|
|
|
|
|
use Attribute;
|
|
|
|
|
|
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
|
|
|
class AsMiddleware
|
|
|
|
|
{
|
|
|
|
|
/** @param string[] $connections */
|
|
|
|
|
public function __construct(
|
|
|
|
|
public array $connections = [],
|
|
|
|
|
) {
|
|
|
|
|
}
|
|
|
|
|
}
|