File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,21 @@ class Config
15
15
public const TRIGGER_FILENAME = '.SOARCE-gather-stats ' ;
16
16
public const SUFFIX_TRACEFILE = '.xt ' ;
17
17
18
- protected ?string $ actionParamName ;
18
+ protected ?string $ actionParamName = null ;
19
19
20
- protected ?string $ applicationName ;
20
+ protected ?string $ applicationName = null ;
21
21
22
- protected ?string $ dataPath ;
22
+ protected ?string $ dataPath = null ;
23
23
24
- protected ?int $ numberOfPipes ;
24
+ protected ?int $ numberOfPipes = null ;
25
25
26
26
/** @var string[] */
27
27
protected array $ whitelistedHostIps = [];
28
28
29
29
/** @var string[] */
30
30
protected array $ whitelistedPaths = [];
31
31
32
- protected ?string $ presharedSecret ;
32
+ protected ?string $ presharedSecret = null ;
33
33
34
34
public function getPresharedSecret (): string
35
35
{
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ class RequestTracking
9
9
const HEADER_NAME = 'HTTP_X_SOARCE_REQUEST_ID ' ;
10
10
const EXPIRY_SECONDS = 600 ;
11
11
12
- private ?string $ requestId ;
12
+ private ?string $ requestId = null ;
13
13
14
- private ?string $ serverIp ;
14
+ private ?string $ serverIp = null ;
15
15
16
- private ?string $ requestIp ;
16
+ private ?string $ requestIp = null ;
17
17
18
18
public function __construct (private ClientInterface $ client )
19
19
{
You can’t perform that action at this time.
0 commit comments