From b0700e55ae8d75c12132d1969556df0a35335d70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Prudil?= Date: Sat, 13 Jan 2018 15:19:42 +0100 Subject: [PATCH] Nette/Utils 3.0 tiny fix Deprecated getter without annotation or use getConfig(). https://github.com/nette/utils/commit/f6db905c49d4cbfeba9d4f8e9cf3ccdca89647c1#diff-d4f9a20a52fa2979739bbe6fb15b6458 --- src/Kdyby/Google/Dialog/AbstractDialog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kdyby/Google/Dialog/AbstractDialog.php b/src/Kdyby/Google/Dialog/AbstractDialog.php index ae83264..c645dc5 100644 --- a/src/Kdyby/Google/Dialog/AbstractDialog.php +++ b/src/Kdyby/Google/Dialog/AbstractDialog.php @@ -62,7 +62,7 @@ abstract class AbstractDialog extends PresenterComponent public function __construct(Google $google) { $this->google = $google; - $this->config = $google->config; + $this->config = $google->getConfig(); $this->session = $google->getSession(); parent::__construct();