disposable-emails-filter-php
disposable-emails-filter-php copied to clipboard
Modify function and property scopes
Hello, from my research, it seems that this package has the most comprehensive blacklist out of all options. I would really like to use it, but I ran into a couple of problems
- I need to access the list of domains as array;
getDomainsFromFile
method is private and I cannot use it - I would like to extend the
Email
class, but I cannot useprivate string $emailListPath;
in my own methods
Suggestions:
- Update all
private
toprotected
so that the class can be extended - (optional) Make
getDomainsFromFile
public