hnhdigital-os/laravel-search-components

View on GitHub

Showing 70 of 70 total issues

Avoid unused private methods such as 'setRoute'.
Open

    private function setRoute(...$arguments)
    {
        $this->config['route_text'] = Arr::get($arguments, 0, '');
        $this->config['route_parameters'] = Arr::get($arguments, 1, []);
        $this->config['route'] = route(...$arguments);
Severity: Minor
Found in src/Search.php by phpmd

UnusedPrivateMethod

Since: 0.2

Unused Private Method detects when a private method is declared but is unused.

Example

class Something
{
    private function foo() {} // unused
}

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

Avoid unused private methods such as 'getResultsId'.
Open

    private function getResultsId()
    {
        return 'hnhdigital-'.Arr::get($this->config, 'name', '').'-results';
    }
Severity: Minor
Found in src/Search.php by phpmd

UnusedPrivateMethod

Since: 0.2

Unused Private Method detects when a private method is declared but is unused.

Example

class Something
{
    private function foo() {} // unused
}

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

Avoid unused private methods such as 'getResult'.
Open

    private function getResult()
    {
        $no_empty_check = false;
        if ($this->getConfig('append') || $this->getConfig('prepend') || $this->getConfig('no_empty_check')) {
            $no_empty_check = true;
Severity: Minor
Found in src/Search.php by phpmd

UnusedPrivateMethod

Since: 0.2

Unused Private Method detects when a private method is declared but is unused.

Example

class Something
{
    private function foo() {} // unused
}

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

Avoid unused local variables such as '$key'.
Open

            foreach ($route_parameters as $key => &$value) {
Severity: Minor
Found in src/Search.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 private methods such as 'setResult'.
Open

    private function setResult($html)
    {
        $this->config['result'] = $html;
    }
Severity: Minor
Found in src/Search.php by phpmd

UnusedPrivateMethod

Since: 0.2

Unused Private Method detects when a private method is declared but is unused.

Example

class Something
{
    private function foo() {} // unused
}

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

The method parseRequest() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
Open

    private function parseRequest()
    {
        $result = [
            'count'      => 0,
            'attributes' => [],
Severity: Minor
Found in src/Search.php by phpmd

CyclomaticComplexity

Since: 0.1

Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

Example

// Cyclomatic Complexity = 11
class Foo {
1   public function example() {
2       if ($a == $b) {
3           if ($a1 == $b1) {
                fiddle();
4           } elseif ($a2 == $b2) {
                fiddle();
            } else {
                fiddle();
            }
5       } elseif ($c == $d) {
6           while ($c == $d) {
                fiddle();
            }
7        } elseif ($e == $f) {
8           for ($n = 0; $n < $h; $n++) {
                fiddle();
            }
        } else {
            switch ($z) {
9               case 1:
                    fiddle();
                    break;
10              case 2:
                    fiddle();
                    break;
11              case 3:
                    fiddle();
                    break;
                default:
                    fiddle();
                    break;
            }
        }
    }
}

Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

Line exceeds 120 characters; contains 125 characters
Open

                        $method_transform = 'transform'.Str::studly(Arr::get($result['attributes'], $key.'.source')).'Value';
Severity: Minor
Found in src/Search.php by phpcodesniffer

Line exceeds 120 characters; contains 122 characters
Open

            Arr::set($this->config, 'paginator.total', $results->count() + Arr::get($this->config, 'paginator.total', 0));
Severity: Minor
Found in src/Search.php by phpcodesniffer

Line exceeds 120 characters; contains 122 characters
Open

            Arr::set($this->config, 'paginator.count', $results->count() + Arr::get($this->config, 'paginator.count', 0));
Severity: Minor
Found in src/Search.php by phpcodesniffer

Line exceeds 120 characters; contains 126 characters
Open

                    $result['text'][] = sprintf('<strong>%s</strong> %s <strong>%s</strong>', $title, $operator_name, $value);
Severity: Minor
Found in src/Search.php by phpcodesniffer
Severity
Category
Status
Source
Language