Chris@14
|
1 <?php
|
Chris@14
|
2
|
Chris@14
|
3 /*
|
Chris@14
|
4 * This file is part of the Symfony package.
|
Chris@14
|
5 *
|
Chris@14
|
6 * (c) Fabien Potencier <fabien@symfony.com>
|
Chris@14
|
7 *
|
Chris@14
|
8 * For the full copyright and license information, please view the LICENSE
|
Chris@14
|
9 * file that was distributed with this source code.
|
Chris@14
|
10 */
|
Chris@14
|
11
|
Chris@14
|
12 namespace Symfony\Component\DependencyInjection\Loader\Configurator;
|
Chris@14
|
13
|
Chris@14
|
14 use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
|
Chris@14
|
15
|
Chris@14
|
16 /**
|
Chris@14
|
17 * @author Nicolas Grekas <p@tchwork.com>
|
Chris@14
|
18 *
|
Chris@14
|
19 * @method InstanceofConfigurator instanceof(string $fqcn)
|
Chris@14
|
20 */
|
Chris@14
|
21 class DefaultsConfigurator extends AbstractServiceConfigurator
|
Chris@14
|
22 {
|
Chris@14
|
23 const FACTORY = 'defaults';
|
Chris@14
|
24
|
Chris@14
|
25 use Traits\AutoconfigureTrait;
|
Chris@14
|
26 use Traits\AutowireTrait;
|
Chris@14
|
27 use Traits\BindTrait;
|
Chris@14
|
28 use Traits\PublicTrait;
|
Chris@14
|
29
|
Chris@14
|
30 /**
|
Chris@14
|
31 * Adds a tag for this definition.
|
Chris@14
|
32 *
|
Chris@14
|
33 * @param string $name The tag name
|
Chris@14
|
34 * @param array $attributes An array of attributes
|
Chris@14
|
35 *
|
Chris@14
|
36 * @return $this
|
Chris@14
|
37 *
|
Chris@14
|
38 * @throws InvalidArgumentException when an invalid tag name or attribute is provided
|
Chris@14
|
39 */
|
Chris@17
|
40 final public function tag($name, array $attributes = [])
|
Chris@14
|
41 {
|
Chris@17
|
42 if (!\is_string($name) || '' === $name) {
|
Chris@14
|
43 throw new InvalidArgumentException('The tag name in "_defaults" must be a non-empty string.');
|
Chris@14
|
44 }
|
Chris@14
|
45
|
Chris@14
|
46 foreach ($attributes as $attribute => $value) {
|
Chris@14
|
47 if (!is_scalar($value) && null !== $value) {
|
Chris@14
|
48 throw new InvalidArgumentException(sprintf('Tag "%s", attribute "%s" in "_defaults" must be of a scalar-type.', $name, $attribute));
|
Chris@14
|
49 }
|
Chris@14
|
50 }
|
Chris@14
|
51
|
Chris@14
|
52 $this->definition->addTag($name, $attributes);
|
Chris@14
|
53
|
Chris@14
|
54 return $this;
|
Chris@14
|
55 }
|
Chris@14
|
56
|
Chris@14
|
57 /**
|
Chris@14
|
58 * Defines an instanceof-conditional to be applied to following service definitions.
|
Chris@14
|
59 *
|
Chris@14
|
60 * @param string $fqcn
|
Chris@14
|
61 *
|
Chris@14
|
62 * @return InstanceofConfigurator
|
Chris@14
|
63 */
|
Chris@14
|
64 final protected function setInstanceof($fqcn)
|
Chris@14
|
65 {
|
Chris@14
|
66 return $this->parent->instanceof($fqcn);
|
Chris@14
|
67 }
|
Chris@14
|
68 }
|