ampache/ampache

View on GitHub
src/Repository/Model/Userflag.php

Summary

Maintainability
C
1 day
Test Coverage

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

class Userflag extends database_object
{
    protected const DB_TABLENAME = 'user_flag';

    // Public variables
Severity: Minor
Found in src/Repository/Model/Userflag.php by phpmd

Function get_flag has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

    public function get_flag($user_id = null, $get_date = false)
    {
        if ($user_id === null) {
            $user    = Core::get_global('user');
            $user_id = $user->id ?? 0;
Severity: Minor
Found in src/Repository/Model/Userflag.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 get_latest_sql has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
Open

    public static function get_latest_sql($input_type, $user_id = null, $since = 0, $before = 0): string
    {
        $type    = Stats::validate_type($input_type);
        $user_id = (int)($user_id);
        $sql     = "SELECT DISTINCT(`user_flag`.`object_id`) AS `id`, COUNT(DISTINCT(`user_flag`.`user`)) AS `count`, `user_flag`.`object_type` AS `type`, MAX(`user_flag`.`user`) AS `user`, MAX(`user_flag`.`date`) AS `date` FROM `user_flag`";
Severity: Minor
Found in src/Repository/Model/Userflag.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 get_latest has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public static function get_latest($type, $user_id = null, $count = 0, $offset = 0, $since = 0, $before = 0): array
Severity: Minor
Found in src/Repository/Model/Userflag.php - About 45 mins to fix

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

        public static function build_cache($type, $ids, $user_id = null): bool
        {
            if (empty($ids)) {
                return false;
            }
    Severity: Minor
    Found in src/Repository/Model/Userflag.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 set_flag has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public function set_flag($flagged, $user_id = null): bool
        {
            if ($user_id === null) {
                $user    = Core::get_global('user');
                $user_id = $user->id ?? 0;
    Severity: Minor
    Found in src/Repository/Model/Userflag.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 garbage_collection has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function garbage_collection($object_type = null, $object_id = null): void
        {
            $types = array(
                'album',
                'album_disk',
    Severity: Minor
    Found in src/Repository/Model/Userflag.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 array(true, $row['date']);
    Severity: Major
    Found in src/Repository/Model/Userflag.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return $flagged;
      Severity: Major
      Found in src/Repository/Model/Userflag.php - About 30 mins to fix

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

            public static function save_flag($user, $song, $flagged): void
            {
                foreach (Plugin::get_plugins('set_flag') as $plugin_name) {
                    try {
                        $plugin = new Plugin($plugin_name);
        Severity: Minor
        Found in src/Repository/Model/Userflag.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 get_latest_sql() has an NPath complexity of 648. The configured NPath complexity threshold is 200.
        Open

            public static function get_latest_sql($input_type, $user_id = null, $since = 0, $before = 0): string
            {
                $type    = Stats::validate_type($input_type);
                $user_id = (int)($user_id);
                $sql     = "SELECT DISTINCT(`user_flag`.`object_id`) AS `id`, COUNT(DISTINCT(`user_flag`.`user`)) AS `count`, `user_flag`.`object_type` AS `type`, MAX(`user_flag`.`user`) AS `user`, MAX(`user_flag`.`date`) AS `date` FROM `user_flag`";
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        NPathComplexity

        Since: 0.1

        The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

        Example

        class Foo {
            function bar() {
                // lots of complicated code
            }
        }

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

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

            public static function get_latest_sql($input_type, $user_id = null, $since = 0, $before = 0): string
            {
                $type    = Stats::validate_type($input_type);
                $user_id = (int)($user_id);
                $sql     = "SELECT DISTINCT(`user_flag`.`object_id`) AS `id`, COUNT(DISTINCT(`user_flag`.`user`)) AS `count`, `user_flag`.`object_type` AS `type`, MAX(`user_flag`.`user`) AS `user`, MAX(`user_flag`.`date`) AS `date` FROM `user_flag`";
        Severity: Minor
        Found in src/Repository/Model/Userflag.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 garbage_collection uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                    } else {
                        debug_event(self::class, 'Garbage collect on type `' . $object_type . '` is not supported.', 1);
                    }
        Severity: Minor
        Found in src/Repository/Model/Userflag.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 '184', column '13').
        Open

            public function get_flag($user_id = null, $get_date = false)
            {
                if ($user_id === null) {
                    $user    = Core::get_global('user');
                    $user_id = $user->id ?? 0;
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

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

                    } else {
                        parent::add_to_cache('userflag_' . $type . '_user' . $user_id, $object_id, array(false));
                    }
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

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

                } else {
                    foreach ($types as $type) {
                        Dba::write("DELETE FROM `user_flag` WHERE `object_type` = '$type' AND `user_flag`.`object_id` NOT IN (SELECT `$type`.`id` FROM `$type`);");
                    }
                }
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

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

                } else {
                    $date   = time();
                    $sql    = "REPLACE INTO `user_flag` (`object_id`, `object_type`, `user`, `date`) VALUES (?, ?, ?, ?)";
                    $params = array($this->id, $this->type, $user_id, $date);
                    parent::add_to_cache('userflag_' . $this->type . '_user' . $user_id, $this->id, array(1, $date));
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

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

                } else {
                    $text = Ajax::text(
                        $base_url . '&userflag=1',
                        '',
                        'userflag_i_' . $userflag->id . '_' . $userflag->type,
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

        syntax error, unexpected 'int' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST)
        Open

            public int $id; // The object_id of the object flagged
        Severity: Critical
        Found in src/Repository/Model/Userflag.php by phan

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

            public static function save_flag($user, $song, $flagged): void
            {
                foreach (Plugin::get_plugins('set_flag') as $plugin_name) {
                    try {
                        $plugin = new Plugin($plugin_name);
        Severity: Major
        Found in src/Repository/Model/Userflag.php and 1 other location - About 2 hrs to fix
        src/Repository/Model/Rating.php on lines 366..378

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

        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

        The parameter $get_date is not named in camelCase.
        Open

            public function get_flag($user_id = null, $get_date = false)
            {
                if ($user_id === null) {
                    $user    = Core::get_global('user');
                    $user_id = $user->id ?? 0;
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $user_id is not named in camelCase.
        Open

            public function set_flag($flagged, $user_id = null): bool
            {
                if ($user_id === null) {
                    $user    = Core::get_global('user');
                    $user_id = $user->id ?? 0;
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $user_id is not named in camelCase.
        Open

            public static function get_latest_sql($input_type, $user_id = null, $since = 0, $before = 0): string
            {
                $type    = Stats::validate_type($input_type);
                $user_id = (int)($user_id);
                $sql     = "SELECT DISTINCT(`user_flag`.`object_id`) AS `id`, COUNT(DISTINCT(`user_flag`.`user`)) AS `count`, `user_flag`.`object_type` AS `type`, MAX(`user_flag`.`user`) AS `user`, MAX(`user_flag`.`date`) AS `date` FROM `user_flag`";
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $object_type is not named in camelCase.
        Open

            public static function garbage_collection($object_type = null, $object_id = null): void
            {
                $types = array(
                    'album',
                    'album_disk',
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $old_object_id is not named in camelCase.
        Open

            public static function migrate($object_type, $old_object_id, $new_object_id)
            {
                $sql = "UPDATE IGNORE `user_flag` SET `object_id` = ? WHERE `object_type` = ? AND `object_id` = ?";
        
                return Dba::write($sql, array($new_object_id, $object_type, $old_object_id));
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

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

            public int $id; // The object_id of the object flagged
        Severity: Minor
        Found in src/Repository/Model/Userflag.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

        The parameter $input_type is not named in camelCase.
        Open

            public static function get_latest_sql($input_type, $user_id = null, $since = 0, $before = 0): string
            {
                $type    = Stats::validate_type($input_type);
                $user_id = (int)($user_id);
                $sql     = "SELECT DISTINCT(`user_flag`.`object_id`) AS `id`, COUNT(DISTINCT(`user_flag`.`user`)) AS `count`, `user_flag`.`object_type` AS `type`, MAX(`user_flag`.`user`) AS `user`, MAX(`user_flag`.`date`) AS `date` FROM `user_flag`";
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $user_id is not named in camelCase.
        Open

            public static function get_latest($type, $user_id = null, $count = 0, $offset = 0, $since = 0, $before = 0): array
            {
                if ($count === 0) {
                    $count = AmpConfig::get('popular_threshold', 10);
                }
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $new_object_id is not named in camelCase.
        Open

            public static function migrate($object_type, $old_object_id, $new_object_id)
            {
                $sql = "UPDATE IGNORE `user_flag` SET `object_id` = ? WHERE `object_type` = ? AND `object_id` = ?";
        
                return Dba::write($sql, array($new_object_id, $object_type, $old_object_id));
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $object_id is not named in camelCase.
        Open

            public static function garbage_collection($object_type = null, $object_id = null): void
            {
                $types = array(
                    'album',
                    'album_disk',
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $user_id is not named in camelCase.
        Open

            public function get_flag($user_id = null, $get_date = false)
            {
                if ($user_id === null) {
                    $user    = Core::get_global('user');
                    $user_id = $user->id ?? 0;
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $object_id is not named in camelCase.
        Open

            public static function show($object_id, $type): string
            {
                // If user flags aren't enabled don't do anything
                if (!AmpConfig::get('ratings')) {
                    return '';
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $object_type is not named in camelCase.
        Open

            public static function migrate($object_type, $old_object_id, $new_object_id)
            {
                $sql = "UPDATE IGNORE `user_flag` SET `object_id` = ? WHERE `object_type` = ? AND `object_id` = ?";
        
                return Dba::write($sql, array($new_object_id, $object_type, $old_object_id));
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $object_id is not named in camelCase.
        Open

            public function __construct($object_id, $type)
            {
                $this->id   = (int)($object_id);
                $this->type = $type;
            }
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        The parameter $user_id is not named in camelCase.
        Open

            public static function build_cache($type, $ids, $user_id = null): bool
            {
                if (empty($ids)) {
                    return false;
                }
        Severity: Minor
        Found in src/Repository/Model/Userflag.php by phpmd

        CamelCaseParameterName

        Since: 0.2

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

        Example

        class ClassName {
            public function doSomething($user_name) {
            }
        }

        Source

        There are no issues that match your filters.

        Category
        Status