@codeCoverageIgnoreStart for private __clone()
This commit is contained in:
12
Registry.php
12
Registry.php
@ -33,7 +33,17 @@ class Registry extends ArrayObject
|
||||
parent::__construct($array, $flags);
|
||||
}
|
||||
|
||||
private function __clone(){}
|
||||
/**
|
||||
* Refuse clone
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __clone()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieves the default registry instance.
|
||||
|
@ -29,12 +29,17 @@ class CliController
|
||||
|
||||
/**
|
||||
* Refuse cloning
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __clone()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreEnd
|
||||
*/
|
||||
|
||||
/**
|
||||
* @static
|
||||
* @return CliController
|
||||
*/
|
||||
|
@ -35,12 +35,17 @@ class FrontController
|
||||
|
||||
/**
|
||||
* Refuse cloning
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __clone()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreEnd
|
||||
*/
|
||||
|
||||
/**
|
||||
* @return FrontController
|
||||
*/
|
||||
static public function getInstance()
|
||||
@ -128,7 +133,8 @@ class FrontController
|
||||
}
|
||||
}
|
||||
return $html;
|
||||
} catch (Exception $e) {
|
||||
}
|
||||
catch (Exception $e) {
|
||||
if (Config::get('DEBUG')) {
|
||||
if (!headers_sent()) {
|
||||
if ($e instanceof ErrorHTTPException) {
|
||||
|
@ -21,15 +21,25 @@ class Session
|
||||
|
||||
/**
|
||||
* Avoid new
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __construct(){}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreEnd
|
||||
*/
|
||||
|
||||
/**
|
||||
* Avoid cloning
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __clone(){}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreEnd
|
||||
*/
|
||||
|
||||
/**
|
||||
* Retrieve a member of the $_SESSION
|
||||
*
|
||||
* If no $key is passed, returns the entire $_SESSION array.
|
||||
|
@ -36,12 +36,17 @@ class Profiler
|
||||
|
||||
/**
|
||||
* Refuse cloning
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
private function __clone()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnoreStart
|
||||
*/
|
||||
|
||||
/**
|
||||
* @return Profiler
|
||||
*/
|
||||
static public function getInstance()
|
||||
|
Reference in New Issue
Block a user