Skip to content
This repository was archived by the owner on Feb 17, 2022. It is now read-only.

Commit 061c5d6

Browse files
author
Robert Kummer
authored
Fixed method params for issue #44
1 parent c1d9e56 commit 061c5d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ipunkt/LaravelAnalytics/Providers/NoAnalytics.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function render()
3232
*
3333
* @return void
3434
*/
35-
public function trackPage($page, $title, $hittype)
35+
public function trackPage($page = null, $title = null, $hittype = null)
3636
{
3737
}
3838

@@ -46,7 +46,7 @@ public function trackPage($page, $title, $hittype)
4646
*
4747
* @return void
4848
*/
49-
public function trackEvent($category, $action, $label, $value)
49+
public function trackEvent($category, $action, $label = null, $value = null)
5050
{
5151
}
5252

0 commit comments

Comments
 (0)