chamilo/chamilo-lms

View on GitHub
public/main/inc/lib/import.lib.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '73', column '23').
Open

        $reader = new \PhpOffice\PhpSpreadsheet\Reader\Xls();
Severity: Minor
Found in public/main/inc/lib/import.lib.php by phpmd

MissingImport

Since: 2.7.0

Importing all external classes in a file through use statements makes them clearly visible.

Example

function make() {
    return new \stdClass();
}

Source http://phpmd.org/rules/cleancode.html#MissingImport

Avoid unused parameters such as '$setFirstRowAsHeader'.
Open

    public static function csv_reader($path, $setFirstRowAsHeader = true)
Severity: Minor
Found in public/main/inc/lib/import.lib.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

Method name "Import::csv_reader" is not in camel caps format
Open

    public static function csv_reader($path, $setFirstRowAsHeader = true)

The method csv_reader is not named in camelCase.
Open

    public static function csv_reader($path, $setFirstRowAsHeader = true)
    {
        return self::csvToArray($path);
    }
Severity: Minor
Found in public/main/inc/lib/import.lib.php by phpmd

CamelCaseMethodName

Since: 0.2

It is considered best practice to use the camelCase notation to name methods.

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status