classes/yf_redirect.class.php
Function _go
has a Cognitive Complexity of 76 (exceeds 5 allowed). Consider refactoring. Open
Open
public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])
{
if (is_array($location)) {
$params += $location;
$rewrite = isset($params['rewrite']) ? $params['rewrite'] : $rewrite;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method _go
has 138 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])
{
if (is_array($location)) {
$params += $location;
$rewrite = isset($params['rewrite']) ? $params['rewrite'] : $rewrite;
Function _loop_detected
has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring. Open
Open
public function _loop_detected($cur_url)
{
if ( ! $this->LOOP_DEFENCE) {
return false;
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
File yf_redirect.class.php
has 314 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
/**
* Redirects handler.
*
Method _loop_detected
has 58 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function _loop_detected($cur_url)
{
if ( ! $this->LOOP_DEFENCE) {
return false;
}
Method _save_log
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function _save_log($params = [])
{
if ( ! $this->LOG_REDIRECTS) {
return false;
}
Method _go
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public function _go($location, $rewrite = true, $redirect_type = 'hybrid', $text = '', $ttl = 3, $params = [])