UnnecessaryVarAnnotation
A @var annotation matches the type that mir already infers.
Example
Section titled “Example”<?php/** @var int $count */$count = count($items); // count() already returns intHow to fix
Section titled “How to fix”Remove the @var annotation — it provides no additional information.