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/maab16
* @since 1.0.0
* @package WPB
* @subpackage WPB/includes
*/
* Define the internationalization functionality.
* @author Md Abu Ahsan basir <[email protected]>
class WPB_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 */
'wpb',
false,
dirname( dirname( plugin_basename( __FILE__ ) ) ) . '/languages/'
plugin_basename
dirname( dirname( /** @scrutinizer ignore-call */ plugin_basename( __FILE__ ) ) ) . '/languages/'
);
}