You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We upgraded from phpstan 1.X to 2.X and received many many more errors that 1.X reporting. One of the common ones is that it suggests removing the type from ID fields. For example an int field is designated as ?int $id.
Line CoreDomain/Settlement/Matter/Application.php
42 Property NS\CoreDomain\Settlement\Matter\Application::$id (int|null)
is never assigned int so it can be removed from the property type.
🪪 property.unusedType
How do we fix this? Is there something we need to change in the configuration between v1-v2?