Skip to content

Commit

Permalink
fix: 🙄
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed Dec 2, 2021
1 parent c8fe746 commit f3b5f2d
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 @@ -3,7 +3,7 @@
"description": "Utilities that make reading and writing PHP code more convenient and enjoyable",
"type": "library",
"license": "GPL-v2-or-later",
"version": "1.2.2",
"version": "1.2.3",
"authors": [
{
"name": "Elegant Themes",
Expand Down
2 changes: 1 addition & 1 deletion src/Utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function __call( $name, $args ) {
}

if ( method_exists( 'ET_Core_Data_Utils', $name ) ) {
return ET_Core_Data_Utils::instance()->$name( ...$args );
return \ET_Core_Data_Utils::instance()->$name( ...$args );
}

throw new \Exception( "Call to undefined method: {$class}::{$name}()" );
Expand Down

0 comments on commit f3b5f2d

Please sign in to comment.