Skip to content

MismatchingDocblockParamType

関数のdocblockの@paramエントリがパラメータの型ヒントと一致しない場合に発生します。

<?php
/**
 * @param int $b
 */
function foo(string $b) : void {}

ユーザーノート