Created
December 7, 2011 23:10
Revisions
-
Paul Macek created this gist
Dec 7, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ <pre> <?php class Loader { static public function helper($class){ echo "including concrete5 {$class}\n"; } } class MyLoader { static public function helper($class){ if($class == "captcha"){ echo "loading my super secret {$class}\n"; } else { Patchwork\pass(); } } } $hijack = Patchwork\replace('Loader::helper', 'MyLoader::helper'); Loader::helper("captcha"); Loader::helper("foobar"); Patchwork\undo($hijack); Loader::helper("captcha");