Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Thanks for this amazing package 🚀 I ran into a problem when I using `--ignore="table1, table2, ...` because of the exploding does not allow whitespace. How about changing that to a more forgiving `preg_split`? Example: ``` $list = "a, b,c d"; preg_split('/[,\s]+/', $list); ``` This might be implemented in other places as well.
- Loading branch information