Browse Source

@codeCoverageIgnoreStart for private __clone()

master^2
Anton Terekhov 12 years ago
parent
commit
766cce1fbc
  1. 14
      Registry.php
  2. 5
      app/CliController.php
  3. 8
      app/FrontController.php
  4. 14
      session/Session.php
  5. 5
      util/profiler/Profiler.php

14
Registry.php

@ -32,8 +32,18 @@ class Registry extends ArrayObject
{ {
parent::__construct($array, $flags); parent::__construct($array, $flags);
} }
private function __clone(){}
/**
* Refuse clone
* @codeCoverageIgnoreStart
*/
private function __clone()
{
}
/**
* @codeCoverageIgnoreStart
*/
/** /**
* Retrieves the default registry instance. * Retrieves the default registry instance.

5
app/CliController.php

@ -29,12 +29,17 @@ class CliController
/** /**
* Refuse cloning * Refuse cloning
* @codeCoverageIgnoreStart
*/ */
private function __clone() private function __clone()
{ {
} }
/** /**
* @codeCoverageIgnoreEnd
*/
/**
* @static * @static
* @return CliController * @return CliController
*/ */

8
app/FrontController.php

@ -35,12 +35,17 @@ class FrontController
/** /**
* Refuse cloning * Refuse cloning
* @codeCoverageIgnoreStart
*/ */
private function __clone() private function __clone()
{ {
} }
/** /**
* @codeCoverageIgnoreEnd
*/
/**
* @return FrontController * @return FrontController
*/ */
static public function getInstance() static public function getInstance()
@ -128,7 +133,8 @@ class FrontController
} }
} }
return $html; return $html;
} catch (Exception $e) {
}
catch (Exception $e) {
if (Config::get('DEBUG')) { if (Config::get('DEBUG')) {
if (!headers_sent()) { if (!headers_sent()) {
if ($e instanceof ErrorHTTPException) { if ($e instanceof ErrorHTTPException) {

14
session/Session.php

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

5
util/profiler/Profiler.php

@ -36,12 +36,17 @@ class Profiler
/** /**
* Refuse cloning * Refuse cloning
* @codeCoverageIgnoreStart
*/ */
private function __clone() private function __clone()
{ {
} }
/** /**
* @codeCoverageIgnoreStart
*/
/**
* @return Profiler * @return Profiler
*/ */
static public function getInstance() static public function getInstance()

Loading…
Cancel
Save