Skip to content

Commit ce62b9a

Browse files
Merge branch '3.3' into 3.4
* 3.3: [2.8] Fix some docblocks Escape trailing \ in QuestionHelper autocompletion [FrameworkBundle][Serializer] Remove outdated condition Add "doctrine/annotations" to top-level composer.json Fix phpdoc inconsistencies, simplify no-op sprintf. Remove inapplicable phpdoc comment nit: Fix phpdoc inconsistency and unreachable statement Prefer line formatter on missing cli dumper [DI] Enhance service locator error message
2 parents 67af9ca + 93857b7 commit ce62b9a

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

Console/Descriptor/TextDescriptor.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,6 @@ protected function describeCallable($callable, array $options = array())
418418
$this->writeText($this->formatCallable($callable), $options);
419419
}
420420

421-
/**
422-
* @param array $array
423-
*/
424421
private function renderEventListenerTable(EventDispatcherInterface $eventDispatcher, $event, array $eventListeners, SymfonyStyle $io)
425422
{
426423
$tableHeaders = array('Order', 'Callable', 'Priority');

Tests/Functional/SerializerTest.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,13 @@
1111

1212
namespace Symfony\Bundle\FrameworkBundle\Tests\Functional;
1313

14-
use Symfony\Component\Serializer\Normalizer\DataUriNormalizer;
15-
1614
/**
1715
* @author Kévin Dunglas <[email protected]>
1816
*/
1917
class SerializerTest extends WebTestCase
2018
{
2119
public function testDeserializeArrayOfObject()
2220
{
23-
if (!class_exists(DataUriNormalizer::class)) {
24-
$this->markTestSkipped('This test is only applicable when using the Symfony Serializer Component version 3.1 or superior.');
25-
}
26-
2721
static::bootKernel(array('test_case' => 'Serializer'));
2822
$container = static::$kernel->getContainer();
2923

0 commit comments

Comments
 (0)