Skip to content

UnnecessaryVarAnnotation

A @var annotation matches the type that mir already infers.

<?php
/** @var int $count */
$count = count($items); // count() already returns int

Remove the @var annotation — it provides no additional information.