@@ -511,14 +511,14 @@ protected function processParams(File $phpcsFile, $stackPtr, $commentStart)
511511 /**
512512 * Check the spacing after the type of a parameter.
513513 *
514- * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
515- * @param array $param The parameter to be checked.
516- * @param int $maxType The maxlength of the longest parameter type.
517- * @param int $spacing The number of spaces to add after the type.
514+ * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
515+ * @param array $param The parameter to be checked.
516+ * @param int $maxType The maxlength of the longest parameter type.
517+ * @param int $spacing The number of spaces to add after the type.
518518 *
519519 * @return void
520520 */
521- protected function checkSpacingAfterParamType (PHP_CodeSniffer_File $ phpcsFile , $ param , $ maxType , $ spacing = 1 )
521+ protected function checkSpacingAfterParamType (File $ phpcsFile , $ param , $ maxType , $ spacing= 1 )
522522 {
523523 // Check number of spaces after the type.
524524 $ spaces = ($ maxType - strlen ($ param ['type ' ]) + $ spacing );
@@ -565,14 +565,14 @@ protected function checkSpacingAfterParamType(PHP_CodeSniffer_File $phpcsFile, $
565565 /**
566566 * Check the spacing after the name of a parameter.
567567 *
568- * @param PHP_CodeSniffer_File $phpcsFile The file being scanned.
569- * @param array $param The parameter to be checked.
570- * @param int $maxVar The maxlength of the longest parameter name.
571- * @param int $spacing The number of spaces to add after the type.
568+ * @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
569+ * @param array $param The parameter to be checked.
570+ * @param int $maxVar The maxlength of the longest parameter name.
571+ * @param int $spacing The number of spaces to add after the type.
572572 *
573573 * @return void
574574 */
575- protected function checkSpacingAfterParamName (PHP_CodeSniffer_File $ phpcsFile , $ param , $ maxVar , $ spacing = 1 )
575+ protected function checkSpacingAfterParamName (File $ phpcsFile , $ param , $ maxVar , $ spacing= 1 )
576576 {
577577 // Check number of spaces after the var name.
578578 $ spaces = ($ maxVar - strlen ($ param ['var ' ]) + $ spacing );
0 commit comments