class/Utility.php
Function loadImg
has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring. Open
Open
public static function loadImg($REQUEST, &$event_picture1, &$event_picture2)
{
///////////////////////////////////////////////////////////////////////////////
$uploaddir_event = XOOPS_ROOT_PATH . '/uploads/extcal/';
$uploadurl_event = XOOPS_URL . '/uploads/extcal/';
- 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 Utility.php
has 254 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
namespace XoopsModules\Extcal;
/**
Method loadImg
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public static function loadImg($REQUEST, &$event_picture1, &$event_picture2)
{
///////////////////////////////////////////////////////////////////////////////
$uploaddir_event = XOOPS_ROOT_PATH . '/uploads/extcal/';
$uploadurl_event = XOOPS_URL . '/uploads/extcal/';
Method addDate2
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public static function addDate2($date, $number, $interval = 'd')
{
$date_time_array = \getdate($date);
$hours = $date_time_array['hours'];
$minutes = $date_time_array['minutes'];
Function addDate2
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
public static function addDate2($date, $number, $interval = 'd')
{
$date_time_array = \getdate($date);
$hours = $date_time_array['hours'];
$minutes = $date_time_array['minutes'];
- 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 getList
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
public static function getList($name, $caption, $default, $options, $sep = ';')