whiteCube/lingua

View on GitHub
src/Lingua/Service.php

Summary

Maintainability
A
45 mins
Test Coverage

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

    protected function guess(string $format)
    {
        $matches = [];
        foreach (self::$converters as $key => $converter) {
            if(!call_user_func_array($converter . '::check', [$format])) continue;
Severity: Minor
Found in src/Lingua/Service.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

Missing class import via use statement (line '64', column '19').
Open

        throw new \Exception('Call to undefined Lingua method "' . $method . '"');
Severity: Minor
Found in src/Lingua/Service.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

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

            throw new \Exception('Instantiation methods should begin with "create"');
Severity: Minor
Found in src/Lingua/Service.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

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

            throw new \Exception('Call to undefined "'. $prefix . '" Lingua method');
Severity: Minor
Found in src/Lingua/Service.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

Missing class import via use statement (line '94', column '19').
Open

        throw new \Exception('Unable to guess the format for input string "' . $code . '"');
Severity: Minor
Found in src/Lingua/Service.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 local variables such as '$key'.
Open

        foreach (self::$converters as $key => $converter) {
Severity: Minor
Found in src/Lingua/Service.php by phpmd

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

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

Avoid unused parameters such as '$arguments'.
Open

    protected function convert($method, $arguments = [])
Severity: Minor
Found in src/Lingua/Service.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

There are no issues that match your filters.

Category
Status