Showing 380 of 1,093 total issues
Avoid too many return
statements within this method. Open
return $this->getLink($itemname);
Avoid too many return
statements within this method. Open
return false;
Avoid too many return
statements within this method. Open
return null;
Avoid too many return
statements within this method. Open
return $this->drawLegendClassic(true);
Avoid too many return
statements within this method. Open
return $this->getNode($itemname);
Avoid too many return
statements within this method. Open
return array(0, 0);
Avoid too many return
statements within this method. Open
return $mid;
Avoid too many return
statements within this method. Open
return array($xOffset, $yOffset, $nodeName, $endOffset, false);
Avoid too many return
statements within this method. Open
return sprintf("%d:%d", $xOffset, $yOffset);
Avoid too many return
statements within this method. Open
return "E95";
Function help_handler
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function help_handler(e) {
var objectid = jQuery(this).attr('id');
var section = objectid.slice(0, objectid.indexOf('_'));
var target = section + '_help';
var helptext = "undefined";
- 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
Function handleLINK
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function handleLINK($fullcommand, $args, $matches)
{
$this->commitItem();
unset($this->currentObject);
- 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
Function addPoint
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function addPoint($x, $y)
{
MapUtility::debug("Adding point $x,$y to '$this->name'\n");
if (is_null($this->minimumX) || $x < $this->minimumX) {
- 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
Function wmeValidateOneOf
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public static function wmeValidateOneOf($input, $validChoices = array(), $caseSensitive = false)
{
if (!$caseSensitive) {
$input = strtolower($input);
}
- 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
Function handleTEMPLATE
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function handleTEMPLATE($fullcommand, $args, $matches)
{
$templateName = $matches[1];
if (($this->currentType == 'NODE' && isset($this->mapObject->nodes[$templateName]))
- 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
Function writeDataFile
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function writeDataFile($filename)
{
if ($filename == '') {
return;
}
- 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
Function loadBackgroundImage
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function loadBackgroundImage()
{
$bgImageRef = null;
// do the basic prep work
- 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
Function buildOverlibPositioning
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function buildOverlibPositioning($mapItem, $midX, $mapCenterX, $midY, $mapCenterY)
{
$left = '';
$above = '';
$imageExtraHTML = '';
- 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
Function warn
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public static function warn($string, $noticeOnly = false)
{
global $weathermap_map;
global $weathermap_warncount;
global $weathermap_error_suppress;
- 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
Function getUrlParameter
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
- 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"