**Example code:** ``` php /** * Does foo with IDs. * * @param int[] $ids List of IDs. */ function foo( array $ids ) {} ``` **Expected result:** This should be OK. **Actual result:** ``` 4 | ERROR | Expected type hint "int[]"; found "array" for $ids | | (Squiz.Commenting.FunctionComment.IncorrectTypeHint) ``` --- The error comes from https://github.com/squizlabs/PHP_CodeSniffer/blob/master/CodeSniffer/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php#L386.