Skip to content

Instantly share code, notes, and snippets.

@shupp
Created February 21, 2010 19:35
Show Gist options
  • Save shupp/310488 to your computer and use it in GitHub Desktop.
Save shupp/310488 to your computer and use it in GitHub Desktop.
Example of code coverage igore annotations
<?php
class Foo
{
// @codeCoverageIgnoreStart
protected function getCache()
{
return Cache::singleton('MyCacheDriver');
}
// @codeCoverageIgnoreEnd
}
?>
@marianopeterson
Copy link

The "new" is unnecessary.

@shupp
Copy link
Author

shupp commented Jul 29, 2010

You're right, thanks for catching that. Fixed!

Cheers,

Bill

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment