Autoconfigure.php
11 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\DependencyInjection\Attribute; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)] |
| 5 | class Autoconfigure |
| 6 | { |
| 7 | public function __construct(public ?array $tags = null, public ?array $calls = null, public ?array $bind = null, public bool|string|null $lazy = null, public ?bool $public = null, public ?bool $shared = null, public ?bool $autowire = null, public ?array $properties = null, public array|string|null $configurator = null) |
| 8 | { |
| 9 | } |
| 10 | } |
| 11 |