| 1 | <?php |
||
| 8 | class ScriptViewCreator |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var \Spatie\GoogleTagManager\GoogleTagManager |
||
| 12 | */ |
||
| 13 | protected $googleTagManager; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param \Spatie\GoogleTagManager\GoogleTagManager |
||
| 17 | */ |
||
| 18 | public function __construct(GoogleTagManager $googleTagManager) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Bind data to the view. |
||
| 25 | * |
||
| 26 | * @param View $view |
||
| 27 | */ |
||
| 28 | public function create(View $view) |
||
| 39 | } |
||
| 40 |