Remove unnecessary usage of WPFunctions from SubscribersListingRepository

We agreed that we can use WP translation functions directly.
This one was probably some leftover which remained in the file after merging branches.
The file was missing use statement so this was causing an error.
[MAILPOET-4551]
This commit is contained in:
Rostislav Wolny 2022-08-09 13:55:51 +02:00 committed by Rostislav Wolný
parent 54a721b751
commit 7fde0b6bdc

View File

@ -307,7 +307,7 @@ class SubscriberListingRepository extends ListingRepository {
$group = $definition->getGroup();
$allTagsList = [
'label' => WPFunctions::get()->__('All Tags', 'mailpoet'),
'label' => __('All Tags', 'mailpoet'),
'value' => '',
];