Skip to content

Commit 1fb3a41

Browse files
committed
Merge branch '2.3' into 2.4
* 2.3: [Bridge][Twig] Replace deprecated features [HttpFoundation] fix switch statement [Doctrine Bridge] fix DBAL session handler according to PdoSessionHandler fixed previous merge Added phpdoc for Cache-Control directives methods Remove undefined variable $e bumped Symfony version to 2.3.17 Fix a parameter name in a test updated VERSION for 2.3.16 update CONTRIBUTORS for 2.3.16 updated CHANGELOG for 2.3.16 [HttpFoundation] use different approach for duplicate keys in postgres, fix merge for sqlsrv and oracle Conflicts: src/Symfony/Component/DependencyInjection/ContainerBuilder.php src/Symfony/Component/HttpKernel/Kernel.php
2 parents c9d3b8a + 33a2571 commit 1fb3a41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Constraints/NotBlankValidatorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ protected function tearDown()
3535
/**
3636
* @dataProvider getValidValues
3737
*/
38-
public function testValidValues($date)
38+
public function testValidValues($value)
3939
{
4040
$this->context->expects($this->never())
4141
->method('addViolation');
4242

43-
$this->validator->validate($date, new NotBlank());
43+
$this->validator->validate($value, new NotBlank());
4444
}
4545

4646
public function getValidValues()

0 commit comments

Comments
 (0)