Skip to content

Commit

Permalink
Bumps logger loader version to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstandiford committed Aug 5, 2021
1 parent 96f1844 commit 2059651
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"underpin/script-loader": "^1.0",
"underpin/style-loader": "^1.0",
"underpin/logger-loader": "^1.0"
"underpin/logger-loader": "^2.0"
},
"autoload": {
"files": [
Expand Down
2 changes: 1 addition & 1 deletion lib/abstracts/Batch_Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public function __get( $key ) {
if ( isset( $this->$key ) ) {
return $this->$key;
} else {
return new WP_error( 'batch_task_param_not_set', 'The batch task key ' . $key . ' could not be found.' );
return new WP_Error( 'batch_task_param_not_set', 'The batch task key ' . $key . ' could not be found.' );
}
}

Expand Down

0 comments on commit 2059651

Please sign in to comment.