Created
December 7, 2011 23:10
-
-
Save macek/1445216 to your computer and use it in GitHub Desktop.
Patchwork Sample
This file contains 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
<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"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment