Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor
getInts
to explicitly set split Limit
in preg_split
- Set `-1` as the limit in `preg_split` within the `getInts` method to explicitly prevent a split limit, According to [w3schools documentation](https://www.w3schools.com/php/func_regex_preg_split.asp), `-1` is the default limit. However, this was not working... Considered using `explode` for simplicity but retained `preg_split` for its whitespace-trimming capability. This ensures consistent handling of branch IDs that may include extra spaces around separators (e.g., "18 , 24").
- Loading branch information