phpexpertsinc/CSVSpeaker

View on GitHub

Showing 5 of 5 total issues

Function readCSVGenerator has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    public function readCSVGenerator(array $headers)
    {
        $headerCount = count($headers);
        $lineNumber = 0;
        while (!$this->csvFile->eof()) {
Severity: Minor
Found in src/CSVReader.php - About 1 hr 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

Method fromString has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public static function fromString(string $csv, bool $firstIsHeader = true, string $delimiter = ',',  string $quoteSymbol = "\"", bool $useLegacyEscape = false)
Severity: Minor
Found in src/CSVReader.php - About 35 mins to fix

    Method convertToCsv has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        private function convertToCsv(array $row, string $delimiter = ',', string $quoteSymbol = "\"", $eol = "\n", bool $useLegacyEscape = false): string
    Severity: Minor
    Found in src/CSVWriter.php - About 35 mins to fix

      Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          public function __construct(string $fullFilename, int $lineNumber, array $headers, array $data, Throwable $previous = null)
      Severity: Minor
      Found in src/InvalidCSVException.php - About 35 mins to fix

        Method fromFile has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public static function fromFile($file, bool $firstIsHeader = true, string $delimiter = ',', string $quoteSymbol = "\"", bool $useLegacyEscape = false): self
        Severity: Minor
        Found in src/CSVReader.php - About 35 mins to fix
          Severity
          Category
          Status
          Source
          Language