Skip to content

Commit

Permalink
Merge pull request #2 from sadlig/bugfix/config-empty-selector
Browse files Browse the repository at this point in the history
set $options to null
  • Loading branch information
thomas-kl1 committed Mar 14, 2023
2 parents 395b311 + 85f5c10 commit a21f118
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Model/Config/Source/RoundingMode.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ final class RoundingMode implements OptionSourceInterface
*/
public const UP = 'up';

private array $options = [];
/** @var array|null */
private ?array $options = null;

/**
* List available currency rounding modes.
Expand Down

0 comments on commit a21f118

Please sign in to comment.