Skip to content

[PropertyInfo] BC break caused by #21370 #22222

@teohhanhui

Description

@teohhanhui
Q A
Bug report? no
Feature request? no
BC Break report? yes
RFC? no
Symfony version 3.2.6

BC break caused by #21370

Moving PhpDocExtractor before ReflectionExtractor changes behaviour in client code. This is a BC break.

Example:

class TravelDestination
{
    /**
     * @var TravelDestinationType Type of the travel destination.
     *
     * @ORM\Column(type="travel_destination_type_enum", nullable=true)
     */
    protected $type;

    /**
     * Sets type.
     *
     * @param TravelDestinationType $type
     *
     * @return $this
     */
    public function setType(?TravelDestinationType $type)
    {
        $this->type = $type;

        return $this;
    }

    /**
     * Gets type.
     *
     * @return TravelDestinationType|null
     */
    public function getType(): ?TravelDestinationType
    {
        return $this->type;
    }
}

Before:
nullable is true (from ReflectionExtractor)

After:
nullable is false (from PhpDocExtractor)

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      pFad - Phonifier reborn

      Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

      Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


      Alternative Proxies:

      Alternative Proxy

      pFad Proxy

      pFad v3 Proxy

      pFad v4 Proxy