| @@ -93,7 +93,7 @@ | ||
| 93 | 93 | * Returns an array of paths where translation files may be located. | 
| 94 | 94 | * | 
| 95 | 95 | * @access protected | 
| 96 | - * @return array | |
| 96 | + * @return string[] | |
| 97 | 97 | */ | 
| 98 | 98 |  	protected function get_paths() { | 
| 99 | 99 | |
| @@ -113,7 +113,7 @@ | ||
| 113 | 113 | * @param string $domain Text domain. Unique identifier for retrieving translated strings. | 
| 114 | 114 | * @param string $mofile Path to the MO file. | 
| 115 | 115 | * @return bool | 
| 116 | - */ | |
| 116 | + */ | |
| 117 | 117 |  	public function override_load_textdomain( $override, $domain, $mofile ) { | 
| 118 | 118 | |
| 119 | 119 | global $l10n; | 
| @@ -117,9 +117,9 @@ | ||
| 117 | 117 |  	public function override_load_textdomain( $override, $domain, $mofile ) { | 
| 118 | 118 | |
| 119 | 119 | global $l10n; | 
| 120 | -		if ( isset( $l10n[ $this->get_theme_textdomain() ] ) ) { | |
| 120 | +		if ( isset( $l10n[$this->get_theme_textdomain()] ) ) { | |
| 121 | 121 | // @codingStandardsIgnoreLine WordPress.Variables.GlobalVariables.OverrideProhibited | 
| 122 | - $l10n['kirki'] = $l10n[ $this->get_theme_textdomain() ]; | |
| 122 | + $l10n['kirki'] = $l10n[$this->get_theme_textdomain()]; | |
| 123 | 123 | } | 
| 124 | 124 | |
| 125 | 125 | // Check if the domain is "kirki". |