Skip to content
New issue

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

Added get_instance to avoid multiple instances of GUMP #100

Merged
merged 1 commit into from
Sep 2, 2015

Conversation

MayurVirkar
Copy link
Contributor

This is a fix for two issues in GUMP
1: When you use is_valid() and filter_input(), $gump = new self() creates multiple unwanted instances of GUMP.
2: If you extend GUMP class and if the extended class has a constructor defined, issue mentioned in point 1 tends to call constructor multiple times hence messing up the code logic.

Fix contains singleton pattern implementation for GUMP.
This way, instance is created once and passed around multiple times also resulting into performance improvement and less resource usage.

Have tested the changes against all files in example directory and also currently using it in one of my live projects.

@sn
Copy link
Member

sn commented Sep 2, 2015

great idea and thanks for the fix! I've been wanting to do this one for a while now.

sn added a commit that referenced this pull request Sep 2, 2015
Added get_instance to avoid multiple instances of GUMP
@sn sn merged commit b9bc4dd into Wixel:master Sep 2, 2015
@MayurVirkar
Copy link
Contributor Author

Welcome :)
GUMP is a nice and handy library.
Will try to contribute more in future :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants