Skip to content

Commit

Permalink
Fixes misnamed class
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Stovell <[email protected]>
  • Loading branch information
Sesquipedalian committed Nov 11, 2023
1 parent 5588c30 commit 84795a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/Actions/Moderation/WatchedUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* Rename here and in the exportStatic call at the end of the file.
*/
class WatchUsers implements ActionInterface
class WatchedUsers implements ActionInterface
{
use BackwardCompatibility;

Expand Down Expand Up @@ -511,7 +511,7 @@ protected function __construct()
}

// Export public static functions and properties to global namespace for backward compatibility.
if (is_callable(__NAMESPACE__ . '\WatchUsers::exportStatic'))
WatchUsers::exportStatic();
if (is_callable(__NAMESPACE__ . '\WatchedUsers::exportStatic'))
WatchedUsers::exportStatic();

?>

0 comments on commit 84795a8

Please sign in to comment.