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

[PULL} __CALL , auto-forward call to parser #50

Closed
KTP95 opened this issue Dec 12, 2016 · 2 comments
Closed

[PULL} __CALL , auto-forward call to parser #50

KTP95 opened this issue Dec 12, 2016 · 2 comments

Comments

@KTP95
Copy link
Contributor

KTP95 commented Dec 12, 2016

MAGIC METHOD __CALL for \linfo\linfo for do auto-forward to parser

	public function __call ( $name , $args ) {
		
		if (method_exists($this->parser, $name) && is_callable ( array($this->parser, $name)) {
			
			return call_user_func(array($this->parser,$name), $args);
			
		}
		
	}
@KTP95 KTP95 changed the title [PULL} [PULL} __CALL , auto-forward call to parser Dec 12, 2016
@jrgp
Copy link
Owner

jrgp commented Dec 13, 2016 via email

@KTP95
Copy link
Contributor Author

KTP95 commented Dec 13, 2016

Pull Request #51

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

No branches or pull requests

2 participants