psalm
psalm copied to clipboard
Make phpdoc type case-sensitive
https://psalm.dev/r/84fbd22c02
Related https://github.com/vimeo/psalm/issues/8089 Inspired by https://github.com/vimeo/psalm/pull/8465#issuecomment-1241009459
I found these snippets:
https://psalm.dev/r/84fbd22c02
<?php
use dateTime;
/**
* @param dAteTime $arg
* @return void
*/
function a( $arg ) {
/** @var daTeTime $arg */
echo $arg->format('Y-m-d H:i:s');
}
Psalm output (using commit afe85fa):
ERROR: UnnecessaryVarAnnotation - 10:11 - The @var dateTime annotation for $arg is unnecessary
fixed :)