thujohn / analytics-l4

Google Analytics for Laravel 4
MIT License
111 stars 33 forks source link

Improve the service provider #22

Closed bramdevries closed 10 years ago

bramdevries commented 10 years ago

This makes the package much more flexible and allows dependency injection. eg:

protected $analytics;

public function __construct(\Thujohn\Analytics\Analytics $analytics)
{
    $this->analytics = $analytics;
}

The facade still behaves like before.