$value ) { // @codingStandardsIgnoreStart if ( is_int( $value ) ) { $_COOKIE[ $key ] = (string) $value; } // @codingStandardsIgnoreEnd } } /** * Renders string. * * @param string $string String to render. * * @return void */ public static function renderString( string $string ): void { // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $string; } }