diff --git a/library/Zepto/PluginInterface.php b/library/Zepto/PluginInterface.php index 3c03f2c..64ea39b 100644 --- a/library/Zepto/PluginInterface.php +++ b/library/Zepto/PluginInterface.php @@ -21,7 +21,7 @@ public function request_url(&$url); public function before_file_load(&$file); - public function after_file_load(&$file, &$content); + public function after_file_load(&$content); // Move all these methods into their own classes // public function before_file_meta_parsed(&$headers); diff --git a/plugins/ExamplePlugin.php b/plugins/ExamplePlugin.php index 339473d..230d45b 100644 --- a/plugins/ExamplePlugin.php +++ b/plugins/ExamplePlugin.php @@ -31,7 +31,7 @@ public function before_file_load(&$file) echo '1'; } - public function after_file_load(&$file, &$content) + public function after_file_load(&$content) { echo '1'; } diff --git a/plugins/OtherExamplePlugin.php b/plugins/OtherExamplePlugin.php index f0ecbf7..8231dfc 100644 --- a/plugins/OtherExamplePlugin.php +++ b/plugins/OtherExamplePlugin.php @@ -31,7 +31,7 @@ public function before_file_load(&$file) echo '2'; } - public function after_file_load(&$file, &$content) + public function after_file_load(&$content) { echo '2'; }