We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Each feed type should be a separate class, instead of checking all the time what type of feed it is:
if($type == 'RSS 1') ... elseif($type == 'RSS 2')
elseif($type == 'Atom')
This is not the OOP way.
The text was updated successfully, but these errors were encountered:
You're right, this is indeed not the OOP way. There's some discussion on this topic in #3 also. Patches are always welcome. 😄
Sorry, something went wrong.
No branches or pull requests
Each feed type should be a separate class, instead of checking all the time what type of feed it is:
if($type == 'RSS 1')
...
elseif($type == 'RSS 2')
elseif($type == 'Atom')
This is not the OOP way.
The text was updated successfully, but these errors were encountered: