Showing 10 of 12 total issues
Method init
has 99 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_comments';
$this->_a['verbose'] = 'Exchange_Comments';
$this->_a['cols'] = array(
Method init
has 90 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_advertisements';
$this->_a['verbose'] = 'Exchange_Advertisements';
$this->_a['cols'] = array(
Method init
has 76 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_offer_history';
$this->_a['verbose'] = 'Exchange Offer History';
$this->_a['cols'] = array(
Method init
has 68 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_offers';
$this->_a['verbose'] = 'Exchange_Offers';
$this->_a['cols'] = array(
File day.php
has 270 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
return array(
// ************************************************************* Schema
array(
'regex' => '#^/days/schema$#',
Method init
has 55 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_drafts';
$this->_a['verbose'] = 'Exchange_Drafts';
$this->_a['cols'] = array(
Method init
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_admissions';
$this->_a['verbose'] = 'Exchange_Admissions';
$this->_a['cols'] = array(
Method init
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_offermetadata';
$this->_a['verbose'] = 'Exchange_OfferMetadata';
$this->_a['cols'] = array(
Method init
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function init()
{
$this->_a['table'] = 'exchange_currency_rates';
$this->_a['verbose'] = 'Exchange_CurrencyRate';
$this->_a['cols'] = array(
Function save
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
function save($commit = true)
{
$model = parent::save(false);
// update the content
if (array_key_exists('file', $this->cleaned_data)) {
- 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"