Skip to content

Commit 65f9cd6

Browse files
committed
fixed: PHP implicit null declaration
1 parent 52b6d85 commit 65f9cd6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

classes/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public function importDefinition(string $json_string): bool {
171171
*
172172
* @return array
173173
*/
174-
public function getEndpointConfig(string $endpoint = null): array {
174+
public function getEndpointConfig(?string $endpoint = null): array {
175175
if (empty($this->endpoint_config)) {
176176
return [];
177177
}

0 commit comments

Comments
 (0)