suchen

Heim  >  Fragen und Antworten  >  Hauptteil

So deklarieren Sie typisierte Sammlungen in Symfony-Entitäten in PHP 8.1

Ich erhalte die Fehlermeldung von PHPStan:

Property App\Entity\Product::$productArticles type mapping mismatch: property can contain Doctrine\Common\Collections\Collection but database  
         expects Doctrine\Common\Collections\Collection&iterable<App\Entity\ProductArticle>

Meine Variablendeklaration:

#[ORM\OneToMany(mappedBy: 'product', targetEntity: ProductArticle::class)]
    /** @var  Collection<int, ProductArticle> */
    private Collection $productArticles;

Wie verwende ich: Annotation zum Deklarieren von ORM-Variablen und PHPDoc-Annotation zum gleichzeitigen Deklarieren von Sammlungstypen?

P粉022723606P粉022723606280 Tage vor415

Antworte allen(1)Ich werde antworten

  • P粉014218124

    P粉0142181242024-02-18 10:42:11

    PHPDoc 需要位于属性上方。

    class Foo
    {
        /** @var  Collection */
        #[ORM\OneToMany(mappedBy: 'product', targetEntity: ProductArticle::class)]
        private Collection $productArticles;
    }
    

    这是 PHPStan 使用的解析器库 (nikic/php-parser) 的错误。所以现在必须是这样。

    Antwort
    0
  • StornierenAntwort