1 | <?php |
||
18 | class Script extends AbstractHelper |
||
19 | { |
||
20 | private $analytics; |
||
21 | |||
22 | /** |
||
23 | * Initializes a new instance of this class. |
||
24 | * |
||
25 | * @param AbstractGoogleAnalytics $analytics The analytics to render a script for. |
||
26 | */ |
||
27 | public function __construct(AbstractGoogleAnalytics $analytics) |
||
31 | |||
32 | /** |
||
33 | * Generates the script that is needed to make phpab work. |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | public function __invoke() |
||
41 | } |
||
42 |