Convert variable names to camel case

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 15:02:58 +01:00
committed by Jan Jakeš
parent f5da704106
commit 54549ff037
687 changed files with 15890 additions and 15887 deletions

View File

@@ -13,13 +13,13 @@ class SubscribersAPIKeyInvalid {
/** @var WPFunctions */
private $wp;
public function __construct(PageRenderer $page_renderer, WPFunctions $wp) {
$this->page_renderer = $page_renderer;
public function __construct(PageRenderer $pageRenderer, WPFunctions $wp) {
$this->pageRenderer = $pageRenderer;
$this->wp = $wp;
}
public function render() {
$this->page_renderer->displayPage('invalidkey.html', [
$this->pageRenderer->displayPage('invalidkey.html', [
'current_wp_user' => $this->wp->wpGetCurrentUser()->to_array(),
'subscriber_count' => Subscriber::getTotalSubscribers(),
]);