hnhdigital-os/laravel-search-components

View on GitHub
src/Search.php

Summary

Maintainability
F
4 days
Test Coverage

File Search.php has 537 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace HnhDigital\SearchComponents;

use HnhDigital\LaravelHtmlBuilder\Tag;
Severity: Major
Found in src/Search.php - About 1 day to fix

    Search has 42 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Search
    {
        /**
         * Config.
         *
    Severity: Minor
    Found in src/Search.php - About 5 hrs to fix

      Function parseRequest has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
      Open

          private function parseRequest()
          {
              $result = [
                  'count'      => 0,
                  'attributes' => [],
      Severity: Minor
      Found in src/Search.php - About 4 hrs 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

      The class Search has an overall complexity of 122 which is very high. The configured complexity threshold is 50.
      Open

      class Search
      {
          /**
           * Config.
           *
      Severity: Minor
      Found in src/Search.php by phpmd

      Method parseRequest has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          private function parseRequest()
          {
              $result = [
                  'count'      => 0,
                  'attributes' => [],
      Severity: Minor
      Found in src/Search.php - About 1 hr to fix

        Method render has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function render($html, $response = [])
            {
                $this->result = $html;
                $this->result_response = $response;
        
        
        Severity: Minor
        Found in src/Search.php - About 1 hr to fix

          Method getSearchInput has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function getSearchInput()
              {
                  $total_columns = $this->checkColumns();
                  $search_input = Arr::get($this->config, 'search_input', []);
                  $force_search_input = Arr::get($this->config, 'force_search_input', false);
          Severity: Minor
          Found in src/Search.php - About 1 hr to fix

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

                public function render($html, $response = [])
                {
                    $this->result = $html;
                    $this->result_response = $response;
            
            
            Severity: Minor
            Found in src/Search.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

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

                public function __call($method, $arguments)
                {
                    preg_match('/^(get|set)(.*)$/', $method, $matches);
            
                    if (count($matches)) {
            Severity: Minor
            Found in src/Search.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 setRequest has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                private function setRequest($name)
                {
                    // Get the data from the request or provided array.
                    $request = is_array($name) ? $name : request($name, []);
            
            
            Severity: Minor
            Found in src/Search.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 generateSessionName has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function generateSessionName($name, $class = '', $route_text = '', $route_parameters = [])
                {
                    // Use the unique route as the session name.
                    if (! empty($route_text)) {
                        $name = str_replace(['[', ']', '::', ' '], ['', '-', '-', ''], $route_text);
            Severity: Minor
            Found in src/Search.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

            Function addRequest has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function addRequest(...$names)
                {
                    $request = $this->config['request'];
            
                    // If names provided as an array.
            Severity: Minor
            Found in src/Search.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 $this;
            Severity: Major
            Found in src/Search.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return $this;
              Severity: Major
              Found in src/Search.php - About 30 mins to fix

                Function getSearchInfo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    private function getSearchInfo()
                    {
                        $total_columns = $this->checkColumns();
                        $search_info = Arr::get($this->config, 'search_info', []);
                        $tbody = Tag::tbody();
                Severity: Minor
                Found in src/Search.php - About 25 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 run has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function run($query)
                    {
                        $this->query = clone $query;
                
                        // Run query.
                Severity: Minor
                Found in src/Search.php - About 25 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

                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

                The method setSearchInput has a boolean flag argument $config, which is a certain sign of a Single Responsibility Principle violation.
                Open

                    private function setSearchInput($config = false)
                Severity: Minor
                Found in src/Search.php by phpmd

                BooleanArgumentFlag

                Since: 1.4.0

                A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                Example

                class Foo {
                    public function bar($flag = true) {
                    }
                }

                Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                The method setSearchEmpty has a boolean flag argument $config, which is a certain sign of a Single Responsibility Principle violation.
                Open

                    private function setSearchEmpty($config = false)
                Severity: Minor
                Found in src/Search.php by phpmd

                BooleanArgumentFlag

                Since: 1.4.0

                A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                Example

                class Foo {
                    public function bar($flag = true) {
                    }
                }

                Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

                The method parseModelName uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                Open

                            } else {
                                $lookup->find(collect($value));
                            }
                Severity: Minor
                Found in src/Search.php by phpmd

                ElseExpression

                Since: 1.4.0

                An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                Example

                class Foo
                {
                    public function bar($flag)
                    {
                        if ($flag) {
                            // one branch
                        } else {
                            // another branch
                        }
                    }
                }

                Source https://phpmd.org/rules/cleancode.html#elseexpression

                Avoid assigning values to variables in if clauses and the like (line '83', column '32').
                Open

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

                IfStatementAssignment

                Since: 2.7.0

                Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                Example

                class Foo
                {
                    public function bar($flag)
                    {
                        if ($foo = 'bar') { // possible typo
                            // ...
                        }
                        if ($baz = 0) { // always false
                            // ...
                        }
                    }
                }

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

                Avoid unused private methods such as 'setSession'.
                Open

                    private function setSession($data)
                    {
                        session([$this->session_name => $data]);
                    }
                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 'getPaginationPerPage'.
                Open

                    private function getPaginationPerPage()
                    {
                        $pagination_per_page = Arr::get($this->config, 'pagination_per_page', 15);
                        $page = Arr::get($this->config, 'page', 1);
                        $page = request('page', $page);
                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 'getSession'.
                Open

                    private function getSession()
                    {
                        return session($this->session_name, []);
                    }
                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 'getSearchEmpty'.
                Open

                    private function getSearchEmpty()
                    {
                        $search_empty = Arr::get($this->config, 'search_empty', []);
                        $tbody = Tag::tbody();
                
                
                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 'getSessionName'.
                Open

                    private function getSessionName()
                    {
                        return self::generateSessionName(
                            $this->name,
                            Arr::get($this->config, 'class', ''),
                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 'setClass'.
                Open

                    private function setClass($class)
                    {
                        if (class_exists($class)) {
                            $this->config['class'] = $class;
                            $this->config['model'] = new $class();
                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 'getPaginator'.
                Open

                    private function getPaginator($item = null)
                    {
                        if (! is_null($item)) {
                            return Arr::get($this->config, 'paginator.'.$item, '');
                        }
                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 'getSearchFooter'.
                Open

                    private function getSearchFooter()
                    {
                        $total_columns = $this->checkColumns();
                        $tbody = Tag::tbody();
                
                
                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 'setPaginator'.
                Open

                    private function setPaginator($results)
                    {
                        $paginator = Arr::get($this->config, 'paginator', []);
                
                        $paginator['count'] = $results->count();
                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 'getNotices'.
                Open

                    private function getNotices()
                    {
                        if (empty($this->getConfig('notices'))) {
                            return '';
                        }
                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 'getHeader'.
                Open

                    private function getHeader()
                    {
                        return '';
                    }
                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 'setQuery'.
                Open

                    private function setQuery($query)
                    {
                        $this->config['query'] = $query;
                    }
                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 '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

                Avoid unused parameters such as '$item'.
                Open

                    private function getPagination($item = null)
                Severity: Minor
                Found in src/Search.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

                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 private methods such as 'setRequest'.
                Open

                    private function setRequest($name)
                    {
                        // Get the data from the request or provided array.
                        $request = is_array($name) ? $name : request($name, []);
                
                
                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 'setFallbackRoute'.
                Open

                    private function setFallbackRoute(...$arguments)
                    {
                        $this->config['fallback_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 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 local variables such as '$operator'.
                Open

                                    [$operator_name, $operator, $value] = ModelSearch::parseInlineOperator($filter);
                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 'getPagination'.
                Open

                    private function getPagination($item = null)
                    {
                        return $this->pagination_per_page;
                    }
                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 'setSearchEmpty'.
                Open

                    private function setSearchEmpty($config = false)
                    {
                        // Turn off the the search empty option.
                        if ($config === false) {
                            Arr::set($this->config, 'search_empty', false);
                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 'setSearchInput'.
                Open

                    private function setSearchInput($config = false)
                    {
                        // Turn off the the search empty option.
                        if ($config === false) {
                            Arr::set($this->config, 'search_input', false);
                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 '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 'getSearchInfo'.
                Open

                    private function getSearchInfo()
                    {
                        $total_columns = $this->checkColumns();
                        $search_info = Arr::get($this->config, 'search_info', []);
                        $tbody = Tag::tbody();
                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 'getSearchInput'.
                Open

                    private function getSearchInput()
                    {
                        $total_columns = $this->checkColumns();
                        $search_input = Arr::get($this->config, 'search_input', []);
                        $force_search_input = Arr::get($this->config, 'force_search_input', false);
                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 'getColumns'.
                Open

                    private function getColumns()
                    {
                        $total_columns = $this->checkColumns();
                        $columns = Arr::get($this->config, 'columns', []);
                
                
                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 'getFormId'.
                Open

                    private function getFormId()
                    {
                        return 'hnhdigital-'.Arr::get($this->config, 'name', '').'-form';
                    }
                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 'setName'.
                Open

                    private function setName($name)
                    {
                        $this->config['name'] = $name;
                        $this->form_id = $name;
                    }
                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 using empty try-catch blocks in parseModelName.
                Open

                        } catch (\Exception $exception) {
                        }
                Severity: Minor
                Found in src/Search.php by phpmd

                EmptyCatchBlock

                Since: 2.7.0

                Usually empty try-catch is a bad idea because you are silently swallowing an error condition and then continuing execution. Occasionally this may be the right thing to do, but often it's a sign that a developer saw an exception, didn't know what to do about it, and so used an empty catch to silence the problem.

                Example

                class Foo {
                
                  public function bar()
                  {
                      try {
                          // ...
                      } catch (Exception $e) {} // empty catch block
                  }
                }

                Source https://phpmd.org/rules/design.html#emptycatchblock

                Avoid unused private methods such as 'getSearchHeader'.
                Open

                    private function getSearchHeader()
                    {
                        $total_columns = $this->checkColumns();
                        $search_header = Arr::get($this->config, 'search_header', []);
                        $thead = Tag::thead();
                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

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                    private function setSearchEmpty($config = false)
                    {
                        // Turn off the the search empty option.
                        if ($config === false) {
                            Arr::set($this->config, 'search_empty', false);
                Severity: Major
                Found in src/Search.php and 1 other location - About 1 hr to fix
                src/Search.php on lines 615..636

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 115.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                    private function setSearchInput($config = false)
                    {
                        // Turn off the the search empty option.
                        if ($config === false) {
                            Arr::set($this->config, 'search_input', false);
                Severity: Major
                Found in src/Search.php and 1 other location - About 1 hr to fix
                src/Search.php on lines 586..607

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 115.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Avoid excessively long variable names like $additional_info_closure. Keep variable name length under 20.
                Open

                        $additional_info_closure = Arr::get($search_info, 'additional_info', false);
                Severity: Minor
                Found in src/Search.php by phpmd

                LongVariable

                Since: 0.2

                Detects when a field, formal or local variable is declared with a long name.

                Example

                class Something {
                    protected $reallyLongIntName = -3; // VIOLATION - Field
                    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                        $otherReallyLongName = -5; // VIOLATION - Local
                        for ($interestingIntIndex = 0; // VIOLATION - For
                             $interestingIntIndex < 10;
                             $interestingIntIndex++ ) {
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#longvariable

                Avoid excessively long variable names like $render_columns_closure. Keep variable name length under 20.
                Open

                        $render_columns_closure = Arr::get($search_input, 'render_columns', false);
                Severity: Minor
                Found in src/Search.php by phpmd

                LongVariable

                Since: 0.2

                Detects when a field, formal or local variable is declared with a long name.

                Example

                class Something {
                    protected $reallyLongIntName = -3; // VIOLATION - Field
                    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                        $otherReallyLongName = -5; // VIOLATION - Local
                        for ($interestingIntIndex = 0; // VIOLATION - For
                             $interestingIntIndex < 10;
                             $interestingIntIndex++ ) {
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#longvariable

                Avoid variables with short names like $tr. Configured minimum length is 3.
                Open

                        $tr = $tbody->tr();
                Severity: Minor
                Found in src/Search.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                Avoid variables with short names like $tr. Configured minimum length is 3.
                Open

                        $tr = $thead->tr(['class' => 'search-header']);
                Severity: Minor
                Found in src/Search.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                Avoid variables with short names like $tr. Configured minimum length is 3.
                Open

                        $tr = $tbody->tr(['class' => 'search-input']);
                Severity: Minor
                Found in src/Search.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                Avoid variables with short names like $tr. Configured minimum length is 3.
                Open

                        $tr = $tbody->tr(['class' => 'search-info']);
                Severity: Minor
                Found in src/Search.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                Avoid variables with short names like $tr. Configured minimum length is 3.
                Open

                            $tr = $tbody->tr();
                Severity: Minor
                Found in src/Search.php by phpmd

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                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 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 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

                There are no issues that match your filters.

                Category
                Status