Last active
December 17, 2015 06:49
-
-
Save ephrin/5568628 to your computer and use it in GitHub Desktop.
call parent::__METHOD__ with func_get_args
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$reflect = new \ReflectionClass(get_class($this)); | |
return $reflect->getParentClass()->getMethod(__METHOD__)->invokeArgs($this, func_get_args()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment