Skip to content

Commit

Permalink
Fix value of PHVOLT_T_NOT
Browse files Browse the repository at this point in the history
During execution of custom filters this was causing parser error
  • Loading branch information
Jeckerson committed Oct 21, 2024
1 parent 3e48757 commit 02a2152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Compiler.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class Compiler
public const PHVOLT_T_MOD = '%';
public const PHVOLT_T_MUL = '*';
public const PHVOLT_T_MUL_ASSIGN = 283;
public const PHVOLT_T_NOT = '|';
public const PHVOLT_T_NOT = '!';
public const PHVOLT_T_NOTEQUALS = 273;
public const PHVOLT_T_NOTIDENTICAL = 275;
public const PHVOLT_T_NOT_IN = 367;
Expand Down

0 comments on commit 02a2152

Please sign in to comment.