Merge branch '4.3' into 4.4

* 4.3:
  [Serializer] add missing "internal" annotation
  [DI] Fix suspicious test
  [SecurityBundle] add missing contraint for symfony/config dep
This commit is contained in:
Nicolas Grekas 2019-06-08 08:36:25 +02:00
commit e8975e2dfe
3 changed files with 8 additions and 5 deletions

View File

@ -13,6 +13,8 @@ namespace Symfony\Component\Config\Definition\Exception;
/**
* @author Roland Franssen <franssen.roland@gmail.com>
*
* @internal
*/
class TreeWithoutRootNodeException extends \RuntimeException
{

View File

@ -278,16 +278,15 @@ class ValidateEnvPlaceholdersPassTest extends TestCase
/**
* @group legacy
* @expectedDeprecation A tree builder without a root node is deprecated since Symfony 4.2 and will not be supported anymore in 5.0.
*/
public function testConfigurationWithoutRootNode(): void
{
$container = new ContainerBuilder();
$container->registerExtension(new EnvExtension(new EnvConfigurationWithoutRootNode()));
$container->loadFromExtension('env_extension');
$container->loadFromExtension('env_extension', ['foo' => 'bar']);
$this->doProcess($container);
$this->addToAssertionCount(1);
(new ValidateEnvPlaceholdersPass())->process($container);
}
public function testEmptyConfigFromMoreThanOneSource()
@ -392,7 +391,7 @@ class EnvConfigurationWithoutRootNode implements ConfigurationInterface
{
public function getConfigTreeBuilder()
{
return new TreeBuilder('env_extension');
return new TreeBuilder();
}
}

View File

@ -561,6 +561,8 @@ abstract class AbstractObjectNormalizer extends AbstractNormalizer
* {@inheritdoc}
*
* @param string|null $format
*
* @internal
*/
protected function createChildContext(array $parentContext, $attribute/*, ?string $format */)
{