Skip to content

Commit

Permalink
fix: make isSilent property private readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelvesavuori committed Apr 22, 2024
1 parent 30725a4 commit fa3cda4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domain/MikroValid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class MikroValid {
/**
* Toggle to silence (suppress) non-critical messages, such as warnings.
*/
isSilent: boolean;
private readonly isSilent: boolean;

constructor(isSilent = false) {
this.isSilent = isSilent;
Expand Down

0 comments on commit fa3cda4

Please sign in to comment.