Skip to content

Commit

Permalink
Fix php 7 issue?
Browse files Browse the repository at this point in the history
  • Loading branch information
partydragen committed May 17, 2022
1 parent dcd693f commit eb0f672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload/modules/Store/classes/ServiceBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ abstract class ServiceBase {
private string $_description;

/**
* @var string The connection settings path.
* @var string|null The connection settings path.
*/
protected string|null $_connection_settings;
protected ?string $_connection_settings;

/**
* @var string The action settings path.
Expand Down

0 comments on commit eb0f672

Please sign in to comment.