Function save
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
public function save($output_file = '')
{
if (empty($this->tmp_img)) {
if ( ! $this->SILENT_MODE) {
trigger_error('No temporary image for resizing!', E_USER_WARNING);
- 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 save
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function save($output_file = '')
{
if (empty($this->tmp_img)) {
if ( ! $this->SILENT_MODE) {
trigger_error('No temporary image for resizing!', E_USER_WARNING);
Function set_source
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function set_source($img_file = '')
{
$this->_clean_data();
if (empty($img_file) || ! file_exists($img_file) || ! is_readable($img_file)) {
if ( ! $this->SILENT_MODE) {
- 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 _set_new_size_auto
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function _set_new_size_auto()
{
if (empty($this->source_width) || empty($this->source_height)) {
if ( ! $this->SILENT_MODE) {
trigger_error('Missing source image sizes!', E_USER_WARNING);
- 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 set_output_type
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function set_output_type($new_type = '')
{
// If image type is set by number (1,2,3)
if ( ! empty($new_type) && is_numeric($new_type) && isset($this->_avail_types[$new_type])) {
$this->output_type = $this->_avail_types[$new_type];
- 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"