Skip to content

Commit a3f583f

Browse files
authored
Update method signatures to use nullable types
1 parent 33908b3 commit a3f583f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Api/ConfigurationInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ interface ConfigurationInterface
88
CONFIG_RUMVISION_TRACKING_ID = 'elgentos_rumvision/general/tracking_id',
99
CONFIG_RUMVISION_HOST_NAME = 'elgentos_rumvision/general/hostname';
1010

11-
public function isEnabled(int $storeId = null): bool;
11+
public function isEnabled(?int $storeId = null): bool;
1212

13-
public function getTrackingId(int $storeId = null) :string;
13+
public function getTrackingId(?int $storeId = null) :string;
1414

15-
public function getHostName(int $storeId = null) :string;
15+
public function getHostName(?int $storeId = null) :string;
1616

17-
}
17+
}

0 commit comments

Comments
 (0)