From 6924d1d2619104fb4d277fa00420e9af09981f23 Mon Sep 17 00:00:00 2001 From: Mustela Date: Sat, 31 May 2014 12:23:38 -0300 Subject: [PATCH] Fix Undefined property: page The private variable was not defined --- src/GoogleAnalytics/Internals/Request/EventRequest.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/GoogleAnalytics/Internals/Request/EventRequest.php b/src/GoogleAnalytics/Internals/Request/EventRequest.php index 7b8656f..775a8d2 100644 --- a/src/GoogleAnalytics/Internals/Request/EventRequest.php +++ b/src/GoogleAnalytics/Internals/Request/EventRequest.php @@ -41,6 +41,11 @@ class EventRequest extends Request { protected $event; + /** + * @var \UnitedPrototype\GoogleAnalytics\Page + */ + private $page; + /** * @const int */ @@ -132,4 +137,4 @@ public function setPage(Page $page) { } -?> \ No newline at end of file +?>