*/ public function register(): array { return [ T_EMPTY, ]; } /** * @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint * @param int $emptyPointer */ public function process(File $phpcsFile, $emptyPointer): void { $phpcsFile->addError('Use of empty() is disallowed.', $emptyPointer, self::CODE_DISALLOWED_EMPTY); } }