Set object list extractor as expiremental, and use final for default implementation

This commit is contained in:
Joel Wurtz 2019-04-07 11:42:45 +02:00
parent 04eed543af
commit b0cdf45464
No known key found for this signature in database
GPG Key ID: ED264D1967A51B0D
2 changed files with 5 additions and 1 deletions

View File

@ -15,8 +15,10 @@ use Symfony\Component\PropertyInfo\PropertyListExtractorInterface;
/**
* @author David Maicher <mail@dmaicher.de>
*
* @experimental in 4.3
*/
class ObjectPropertyListExtractor implements ObjectPropertyListExtractorInterface
final class ObjectPropertyListExtractor implements ObjectPropertyListExtractorInterface
{
private $propertyListExtractor;
private $objectClassResolver;

View File

@ -13,6 +13,8 @@ namespace Symfony\Component\Serializer\Extractor;
/**
* @author David Maicher <mail@dmaicher.de>
*
* @experimental in 4.3
*/
interface ObjectPropertyListExtractorInterface
{