You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation states that you can load the rules via json_decode(file_get_contents('rules.json')); Actually you have to pass the $assoc parameter for json_decode as true, so it shold be
json_decode(file_get_contents('rules.json'), true);
The text was updated successfully, but these errors were encountered:
The documentation states that you can load the rules via json_decode(file_get_contents('rules.json')); Actually you have to pass the $assoc parameter for json_decode as true, so it shold be
json_decode(file_get_contents('rules.json'), true);
The text was updated successfully, but these errors were encountered: