Files
LaLiga-BackEnd/vendor/doctrine/doctrine-bundle/Attribute/AsMiddleware.php
T
2024-05-18 02:28:01 +02:00

17 lines
302 B
PHP

<?php
namespace Doctrine\Bundle\DoctrineBundle\Attribute;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class AsMiddleware
{
/** @param string[] $connections */
public function __construct(
public array $connections = [],
public ?int $priority = null,
) {
}
}