File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/symfony/dependency-injection/Attribute/Autoconfigure.php
Back
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace RectorPrefix202208\Symfony\Component\DependencyInjection\Attribute; /** * An attribute to tell how a base type should be autoconfigured. * * @author Nicolas Grekas <p@tchwork.com> */ #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::IS_REPEATABLE)] class Autoconfigure { /** * @var mixed[]|null */ public $tags; /** * @var mixed[]|null */ public $calls; /** * @var mixed[]|null */ public $bind; /** * @var bool|string|null */ public $lazy = null; /** * @var bool|null */ public $public; /** * @var bool|null */ public $shared; /** * @var bool|null */ public $autowire; /** * @var mixed[]|null */ public $properties; /** * @var mixed[]|string|null */ public $configurator = null; /** * @param bool|string|null $lazy * @param mixed[]|string|null $configurator */ public function __construct(?array $tags = null, ?array $calls = null, ?array $bind = null, $lazy = null, ?bool $public = null, ?bool $shared = null, ?bool $autowire = null, ?array $properties = null, $configurator = null) { $this->tags = $tags; $this->calls = $calls; $this->bind = $bind; $this->lazy = $lazy; $this->public = $public; $this->shared = $shared; $this->autowire = $autowire; $this->properties = $properties; $this->configurator = $configurator; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings