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

Commit

Permalink
Fixed method params for issue #44
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Kummer authored Mar 31, 2017
1 parent c1d9e56 commit 061c5d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ipunkt/LaravelAnalytics/Providers/NoAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function render()
*
* @return void
*/
public function trackPage($page, $title, $hittype)
public function trackPage($page = null, $title = null, $hittype = null)
{
}

Expand All @@ -46,7 +46,7 @@ public function trackPage($page, $title, $hittype)
*
* @return void
*/
public function trackEvent($category, $action, $label, $value)
public function trackEvent($category, $action, $label = null, $value = null)
{
}

Expand Down

0 comments on commit 061c5d6

Please sign in to comment.