Skip to content

Commit

Permalink
Remove readonly properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Hectorhammett committed Dec 11, 2024
1 parent 561d198 commit 679f1bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Logging/RpcLogEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ class RpcLogEvent
*
* @var string
*/
public readonly string $timestamp;
public string $timestamp;

/**
* The time in milliseconds at time on creation for calculating latency
*
* @var float
*/
public readonly float $milliseconds;
public float $milliseconds;

/**
* Rest method type
Expand Down

0 comments on commit 679f1bd

Please sign in to comment.