idea-php-symfony2-plugin
idea-php-symfony2-plugin copied to clipboard
Entity ID property reports in code inspection that "property is only read but never written"
#[ORM\Entity(repositoryClass: SupportTicketRepository::class)]
class SupportTicket
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;

Given the way that Entities are handled, this should not be triggering a notification
limited by missing extensions points.
there are open issues, but i also asked now insde corresponding slack channel.
do you have any update from slack channel? Is this something that could be implemented? Thanks!