Skip to content

RedundantFunctionCall

関数呼び出し(array_valuesstrtolowerksortなど)が冗長な場合に発生します。

<?php
$a = ['already', 'a', 'list'];
$redundant = array_values($a);
$alreadyLower = strtolower($redundant[0]);

ユーザーノート