Conditions | 3 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function create(View $view) |
||
29 | { |
||
30 | if ($this->googleTagManager->isEnabled() && empty($this->googleTagManager->id())) { |
||
31 | throw new ApiKeyNotSetException(); |
||
32 | } |
||
33 | |||
34 | $view |
||
35 | ->with('enabled', $this->googleTagManager->isEnabled()) |
||
36 | ->with('id', $this->googleTagManager->id()) |
||
37 | ->with('dataLayer', $this->googleTagManager->getDataLayer()); |
||
38 | } |
||
39 | } |
||
40 |