Skip to content

RedundantCast

A value is cast to a type it already has.

<?php
function wrap(int $n): int {
return (int) $n; // $n is already an int
}

Remove the unnecessary cast.