@@ -511,14 +511,14 @@ protected function processParams(File $phpcsFile, $stackPtr, $commentStart)
511
511
/**
512
512
* Check the spacing after the type of a parameter.
513
513
*
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.
518
518
*
519
519
* @return void
520
520
*/
521
- protected function checkSpacingAfterParamType (PHP_CodeSniffer_File $ phpcsFile , $ param , $ maxType , $ spacing = 1 )
521
+ protected function checkSpacingAfterParamType (File $ phpcsFile , $ param , $ maxType , $ spacing= 1 )
522
522
{
523
523
// Check number of spaces after the type.
524
524
$ spaces = ($ maxType - strlen ($ param ['type ' ]) + $ spacing );
@@ -565,14 +565,14 @@ protected function checkSpacingAfterParamType(PHP_CodeSniffer_File $phpcsFile, $
565
565
/**
566
566
* Check the spacing after the name of a parameter.
567
567
*
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.
572
572
*
573
573
* @return void
574
574
*/
575
- protected function checkSpacingAfterParamName (PHP_CodeSniffer_File $ phpcsFile , $ param , $ maxVar , $ spacing = 1 )
575
+ protected function checkSpacingAfterParamName (File $ phpcsFile , $ param , $ maxVar , $ spacing= 1 )
576
576
{
577
577
// Check number of spaces after the var name.
578
578
$ spaces = ($ maxVar - strlen ($ param ['var ' ]) + $ spacing );
0 commit comments