for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Define the internationalization functionality
*
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
* @link https://github.com/austinheap/wordpress-security-txt
* @since 1.0.0
* @package WordPress_Security_Txt
* @subpackage WordPress_Security_Txt/includes
*/
* Define the internationalization functionality.
* @author Austin Heap <[email protected]>
class WordPress_Security_Txt_i18n
{
* Load the plugin text domain for translation.
public function load_plugin_textdomain()
load_plugin_textdomain(
load_plugin_textdomain
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
/** @scrutinizer ignore-call */
'wordpress-security-txt',
false,
dirname(dirname(plugin_basename(__FILE__))) . '/languages/'
plugin_basename
dirname(dirname(/** @scrutinizer ignore-call */ plugin_basename(__FILE__))) . '/languages/'
);
}