Skip to content

Instantly share code, notes, and snippets.

@you-think-you-are-special
Created July 19, 2013 07:40
Show Gist options
  • Save you-think-you-are-special/6037397 to your computer and use it in GitHub Desktop.
Save you-think-you-are-special/6037397 to your computer and use it in GitHub Desktop.
<?php
protected function checkMethodExists($method)
{
if (!method_exists($this, $method))
throw new CException("Method CController::{$method}() not found");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment