Showing 691 of 1,163 total issues
Avoid deeply nested control flow statements. Open
} else if (/highslide-image-blur/.test(el.className)) {
el.style.cursor = hs.styleRestoreCursor;
}
Function agenda_getCanevas
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function agenda_getCanevas($ts, $hStart, $hEnd, $mPlage = 15, $nbJours = 1, $formatDate = '', $formatJour = 'H:i')
{
$helper = Helper::getInstance();
$jour = date('d', $ts);
$mois = date('m', $ts);
- 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 __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($y = 2000, $m = 1, $d = 1, $h = 0, $i = 0, $s = 0)
Function showOverlays
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
showOverlays: function () {
var b = this.overlayBox;
b.className = '';
hs.setStyles(b, {
top: (this.y.p1 + this.y.cb) + 'px',
- 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
Avoid deeply nested control flow statements. Open
if (!hasDragged && !hs.hasFocused && !/(move|resize)/.test(hs.dragArgs.type)) {
exp.close();
}
else if (hasDragged || (!hasDragged && hs.hasHtmlExpanders)) {
hs.dragArgs.exp.doShowHide('hidden');
Avoid deeply nested control flow statements. Open
if (!hiddenBy) els[i].style[prop] = els[i].origProp;
Function updateEventFile
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function updateEventFile($eventId)
{
$criteria = new \CriteriaCompo();
$criteria->add(new \Criteria('file_approved', 1));
$criteria->add(new \Criteria('event_id', $eventId));
- 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 __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($y, $m, $d, $h, $i, $s)
Function doFullExpand
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
doFullExpand: function () {
try {
if (this.fullExpandLabel) hs.discardElement(this.fullExpandLabel);
this.focus();
- 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
Avoid deeply nested control flow statements. Open
if (ie6) {
o.style.width = (overlayBox.offsetWidth + 2 * x.cb
+ x.p1 + x.p2) + 'px';
}
Avoid deeply nested control flow statements. Open
if (re[0] == 'hs.expand') hs.push(images, el);
Function render
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function render()
{
$ret = '<table><tr>';
$i = 0;
if (\count($this->getOptions()) > 1 && '[]' !== mb_substr($this->getName(), -2, 2)) {
- 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 __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($y, $m = null, $d = null, $h = null, $i = null, $s = null)
Method dateToStamp
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function dateToStamp($y, $m, $d, $h = 0, $i = 0, $s = 0)
Function build
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function build($sDates = [])
{
require_once CALENDAR_ROOT . 'Day.php';
$year = $this->cE->stampToYear($this->thisWeek);
$month = $this->cE->stampToMonth($this->thisWeek);
- 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 AC_Generateobj
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function AC_Generateobj(objAttrs, params, embedAttrs) {
var str = '';
if (isIE && isWin && !isOpera) {
str += '<object ';
for (var i in objAttrs) {
- 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 spinSetValue
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
function spinSetValue(prefixe, prefixe2, suffixe, newValue, delai, newImg) {
Method setOrder
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
function setOrder($bid, $title, $weight, $visible, $side, $bcachetime)
Method bExtcalMinicalAddEventToArray
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
function bExtcalMinicalAddEventToArray($event, &$eventsArray, $timeHandler, $startMonth, $endMonth, $cats)
Method setFragments
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function setFragments($y, $m = null, $d = null, $h = null, $i = null, $s = null)