Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
swissspidy committed Sep 6, 2023
1 parent cf22395 commit 59c0745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/class-ginger-mo-translation-file-json.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Ginger_MO_Translation_File_JSON extends Ginger_MO_Translation_File {
* @return void
*/
protected function parse_file() {
$this->parsed = true;
$this->parsed = true;

$data = file_get_contents( $this->file ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents

Expand Down
2 changes: 1 addition & 1 deletion lib/class-ginger-mo-translation-file-php.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Ginger_MO_Translation_File_PHP extends Ginger_MO_Translation_File {
* @return void
*/
protected function parse_file() {
$this->parsed = true;
$this->parsed = true;

$result = include $this->file;
if ( ! $result || ! is_array( $result ) ) {
Expand Down

0 comments on commit 59c0745

Please sign in to comment.