@@ -12,71 +12,71 @@ class Attributes
1212 * Eg, "GET /users/:userId", "Cron:DailyReport", "Queue:ProcessEmails"
1313 * @var string|null
1414 */
15- public ?string $ action ;
15+ public ?string $ action = null ;
1616
1717 /**
1818 * The unique user ID of the user that triggered this trace.
1919 * @var string|null
2020 */
21- public ?string $ userId ;
21+ public ?string $ userId = null ;
2222
2323 /**
2424 * The IP address of the user that triggered this trace.
2525 * @var string|null
2626 */
27- public ?string $ userIp ;
27+ public ?string $ userIp = null ;
2828
2929 /**
3030 * The user agent of the user that triggered this trace.
3131 * @var string|null
3232 */
33- public ?string $ userAgent ;
33+ public ?string $ userAgent = null ;
3434
3535 /**
3636 * The hostname of the server that this trace was collected on.
3737 * @var string|null
3838 */
39- public ?string $ hostname ;
39+ public ?string $ hostname = null ;
4040
4141 /**
4242 * The environment that this trace was collected in.
4343 * Eg, "production", "staging", "development"
4444 * @var string|null
4545 */
46- public ?string $ environment ;
46+ public ?string $ environment = null ;
4747
4848 /**
4949 * The version of the application that this trace was collected in.
5050 * This could be a git commit hash, a version number, or anything else.
5151 * @var string|null
5252 */
53- public ?string $ appVersion ;
53+ public ?string $ appVersion = null ;
5454
5555 /**
5656 * The version of PHP that this trace was collected in.
5757 * @var string|null
5858 */
59- public ?string $ phpVersion ;
59+ public ?string $ phpVersion = null ;
6060
6161 /**
6262 * The HTTP method that was used to trigger this trace, if applicable.
6363 * Eg, "GET", "POST", "PUT", "DELETE"
6464 * @var string|null
6565 */
66- public ?string $ httpMethod ;
66+ public ?string $ httpMethod = null ;
6767
6868 /**
6969 * The HTTP status code that was returned by the server, if applicable.
7070 * Eg, 200, 404, 500
7171 * @var int|null
7272 */
73- public ?int $ httpStatusCode ;
73+ public ?int $ httpStatusCode = null ;
7474
7575 /**
7676 * The full URL that was requested to trigger this trace, if applicable.
7777 * @var string|null
7878 */
79- public ?string $ httpUrl ;
79+ public ?string $ httpUrl = null ;
8080
8181 public function __construct ()
8282 {
0 commit comments