Skip to content

Commit 5df656a

Browse files
Merge branch '5.2' into 5.3
* 5.2: [Cache] clarify RedisStore::evaluate() [Messenger] Fixed BC layer for RedeliveryStamp [DoctrineBridge] fix setting default mapping type to attribute/annotation on php 8/7 respectively do not render the same label id attribute twice make AbstractDataCollector extend DataCollector to reduce boilerplate
2 parents 6c02616 + c3f504f commit 5df656a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

DataCollector/AbstractDataCollector.php

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

1212
namespace Symfony\Bundle\FrameworkBundle\DataCollector;
1313

14+
use Symfony\Component\HttpKernel\DataCollector\DataCollector;
15+
1416
/**
1517
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
1618
*/
17-
abstract class AbstractDataCollector implements TemplateAwareDataCollectorInterface
19+
abstract class AbstractDataCollector extends DataCollector implements TemplateAwareDataCollectorInterface
1820
{
19-
/**
20-
* @var array
21-
*/
22-
protected $data = [];
23-
2421
public function getName(): string
2522
{
2623
return static::class;

0 commit comments

Comments
 (0)