Rename Subscription\Url to Subscription\SubscriptionUrlFactory

[MAILPOET-2381]
This commit is contained in:
Rostislav Wolny
2019-09-23 16:03:23 +02:00
committed by Jack Kitterhing
parent 653dbe5783
commit 7dba4d900c
15 changed files with 30 additions and 30 deletions

View File

@ -17,10 +17,10 @@ class CaptchaRenderer {
/** @var CaptchaSession */
private $captcha_session;
/** @var Url */
/** @var SubscriptionUrlFactory */
private $subscription_url_factory;
function __construct(UrlHelper $url_helper, WPFunctions $wp, CaptchaSession $captcha_session, Url $subscription_url_factory) {
function __construct(UrlHelper $url_helper, WPFunctions $wp, CaptchaSession $captcha_session, SubscriptionUrlFactory $subscription_url_factory) {
$this->url_helper = $url_helper;
$this->wp = $wp;
$this->captcha_session = $captcha_session;