CORE-POS/IS4C

View on GitHub
fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php

Summary

Maintainability
B
4 hrs
Test Coverage

Method read has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function read($filename)
    {
        $arr = FileData::fileToArray($filename);
        if (!is_array($arr)) {
            throw new \Exception('Invalid file');
Severity: Minor
Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 1 hr to fix

    Function parseSize has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        private function parseSize($item)
        {
            $item = strtoupper($item);
            if (preg_match('/([0-9\.]+)\s*-\s*([0-9\.]+)\s*LB/', $item, $matches)) {
                $avg = ($matches[1] + $matches[2]) / 2;
    Severity: Minor
    Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 45 mins to fix

    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 getShippingAddress has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        private function getShippingAddress($arr)
        {
            $ret = array();
            for ($i=0; $i<count($arr); $i++) {
                if (stristr($arr[$i][0], 'Ship To')) {
    Severity: Minor
    Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 35 mins to fix

    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 too many return statements within this method.
    Open

            return array(1, 'CASE');
    Severity: Major
    Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                  return array($matches[1], 'DOZ');
      Severity: Major
      Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                    return array($matches[1], 'CT');
        Severity: Major
        Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return array($matches[1], 'GAL');
          Severity: Major
          Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                        return array($matches[1] * $matches[2], 'OZ');
            Severity: Major
            Found in fannie/modules/plugins2.0/CpwInvoiceImport/FileToOrder.php - About 30 mins to fix

              There are no issues that match your filters.

              Category
              Status