AutoconfigureTrait.php 806 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\DependencyInjection\Loader\Configurator\Traits;
  11. use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
  12. trait AutoconfigureTrait
  13. {
  14. /**
  15. * Sets whether or not instanceof conditionals should be prepended with a global set.
  16. *
  17. * @return $this
  18. *
  19. * @throws InvalidArgumentException when a parent is already set
  20. */
  21. final public function autoconfigure(bool $autoconfigured = true): self
  22. {
  23. $this->definition->setAutoconfigured($autoconfigured);
  24. return $this;
  25. }
  26. }