Issues (12)

resources/config/facebook-pixel.php (1 issue)

Labels
Severity
1
<?php
2
3
return [
4
    
5
    /*
6
     * The Facebook Pixel id, should be a code that looks something like "XXXXXXXXXXXXXXXX".
7
     */
8
    'facebook_pixel_id' => env('FACEBOOK_PIXEL_ID', ''),
0 ignored issues
show
The function env was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

8
    'facebook_pixel_id' => /** @scrutinizer ignore-call */ env('FACEBOOK_PIXEL_ID', ''),
Loading history...
9
    
10
    /*
11
     * Use this variable instead of `facebook_pixel_id` if you need to use multiple facebook pixels
12
     */
13
    'facebook_pixel_ids' => [],
14
    
15
    /*
16
     * Enable or disable script rendering. Useful for local development.
17
     */
18
    'enabled'           => true,
19
20
    'csp_callback'      => '',
21
];