@codeCoverageIgnoreStart for private __clone()

This commit is contained in:
Anton Terekhov
2012-11-21 21:02:13 +04:00
parent c65ce706a9
commit 766cce1fbc
5 changed files with 41 additions and 5 deletions

View File

@ -21,14 +21,24 @@ class Session
/**
* Avoid new
* @codeCoverageIgnoreStart
*/
private function __construct(){}
/**
* @codeCoverageIgnoreEnd
*/
/**
* Avoid cloning
* @codeCoverageIgnoreStart
*/
private function __clone(){}
/**
* @codeCoverageIgnoreEnd
*/
/**
* Retrieve a member of the $_SESSION
*