CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php

Summary

Maintainability
F
1 wk
Test Coverage

File class.akismet-admin.php has 745 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

class Akismet_Admin {
    const NONCE = 'akismet-update-key';

    Akismet_Admin has 44 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Akismet_Admin {
        const NONCE = 'akismet-update-key';
    
        private static $initiated = false;
        private static $notices = array();

      Method admin_help has 88 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function admin_help() {
              $current_screen = get_current_screen();
      
              // Screen Content
              if ( current_user_can( 'manage_options' ) ) {

        Function comment_row_action has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function comment_row_action( $a, $comment ) {
        
                // failsafe for old WP versions
                if ( !function_exists('add_comment_meta') )
                    return $a;

        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 display_configuration_page has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function display_configuration_page() {
                $api_key      = Akismet::get_api_key();
                $akismet_user = self::get_akismet_user( $api_key );
                $stat_totals  = self::get_stats( $api_key );
                

        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 transition_comment_status has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function transition_comment_status( $new_status, $old_status, $comment ) {
                if ( $new_status == $old_status )
                    return;
        
                # we don't need to record a history item for deleted comments

        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 display_start_page has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function display_start_page() {
                if ( isset( $_GET['action'] ) ) {
                    if ( $_GET['action'] == 'delete-key' ) {
                        if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], self::NONCE ) )
                            delete_option( 'wordpress_api_key' );

        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 recheck_queue has 51 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public static function recheck_queue() {
                global $wpdb;
        
                Akismet::fix_scheduled_recheck();
        
        

          Function recheck_queue has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function recheck_queue() {
                  global $wpdb;
          
                  Akismet::fix_scheduled_recheck();
          
          

          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 comment_row_action has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static function comment_row_action( $a, $comment ) {
          
                  // failsafe for old WP versions
                  if ( !function_exists('add_comment_meta') )
                      return $a;

            Function save_key has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function save_key( $api_key ) {
                    $key_status = Akismet::verify_key( $api_key );
            
                    if ( $key_status == 'valid' ) {
                        $akismet_user = self::get_akismet_user( $api_key );

            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 submit_spam_comment has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function submit_spam_comment( $comment_id ) {
                    global $wpdb, $current_user, $current_site;
            
                    $comment_id = (int) $comment_id;
            
            

              Method display_configuration_page has 30 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public static function display_configuration_page() {
                      $api_key      = Akismet::get_api_key();
                      $akismet_user = self::get_akismet_user( $api_key );
                      $stat_totals  = self::get_stats( $api_key );
                      

                Method submit_nonspam_comment has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public static function submit_nonspam_comment( $comment_id ) {
                        global $wpdb, $current_user, $current_site;
                
                        $comment_id = (int) $comment_id;
                
                

                  Method display_start_page has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public static function display_start_page() {
                          if ( isset( $_GET['action'] ) ) {
                              if ( $_GET['action'] == 'delete-key' ) {
                                  if ( isset( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], self::NONCE ) )
                                      delete_option( 'wordpress_api_key' );

                    Method rightnow_stats has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public static function rightnow_stats() {
                            global $submenu, $wp_db_version;
                    
                            if ( 8645 < $wp_db_version  ) // 2.7
                                $link = add_query_arg( array( 'comment_status' => 'spam' ), admin_url( 'edit-comments.php' ) );

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

                          public static function get_spam_count( $type = false ) {
                              global $wpdb;
                      
                              if ( !$type ) { // total
                                  $count = wp_cache_get( 'akismet_spam_count', 'widget' );

                      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 enter_api_key has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public static function enter_api_key() {
                              if ( function_exists('current_user_can') && !current_user_can('manage_options') )
                                  die(__('Cheatin&#8217; uh?', 'akismet'));
                      
                              if ( !wp_verify_nonce( $_POST['_wpnonce'], self::NONCE ) )

                      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 submit_spam_comment has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public static function submit_spam_comment( $comment_id ) {
                              global $wpdb, $current_user, $current_site;
                      
                              $comment_id = (int) $comment_id;
                      
                      

                      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 submit_nonspam_comment has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public static function submit_nonspam_comment( $comment_id ) {
                              global $wpdb, $current_user, $current_site;
                      
                              $comment_id = (int) $comment_id;
                      
                      

                      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

                      Consider simplifying this complex logical expression.
                      Open

                                  if ( $new_status == 'spam' && ( $old_status == 'approved' || $old_status == 'unapproved' || !$old_status ) ) {
                                      return self::submit_spam_comment( $comment->comment_ID );
                                  } elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) {
                                      return self::submit_nonspam_comment( $comment->comment_ID );
                                  }

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

                            public static function check_server_connectivity() {
                                $test_host = 'rest.akismet.com';
                        
                                // Some web hosts may disable one or both functions
                                if ( !function_exists('fsockopen') || !function_exists('gethostbynamel') )

                        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 admin_help has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public static function admin_help() {
                                $current_screen = get_current_screen();
                        
                                // Screen Content
                                if ( current_user_can( 'manage_options' ) ) {

                        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 display_status has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public static function display_status() {
                                $servers    = self::get_server_connectivity();
                                $fail_count = count( $servers ) - count( array_filter( $servers ) );
                                $type       = '';
                        
                        

                        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 rightnow_stats has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public static function rightnow_stats() {
                                global $submenu, $wp_db_version;
                        
                                if ( 8645 < $wp_db_version  ) // 2.7
                                    $link = add_query_arg( array( 'comment_status' => 'spam' ), admin_url( 'edit-comments.php' ) );

                        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;

                          Avoid too many return statements within this method.
                          Open

                                      return;

                            Avoid too many return statements within this method.
                            Open

                                            return self::submit_spam_comment( $comment->comment_ID );

                              Avoid too many return statements within this method.
                              Open

                                              return self::submit_nonspam_comment( $comment->comment_ID );

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

                                    public static function get_spam_count( $type = false ) {
                                        global $wpdb;
                                
                                        if ( !$type ) { // total
                                            $count = wp_cache_get( 'akismet_spam_count', 'widget' );
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/akismet.php on lines 527..549

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

                                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

                                                            '<p><strong>' . esc_html__( 'Akismet Configuration' , 'akismet') . '</strong></p>' .
                                                            '<p><strong>' . esc_html__( 'API Key' , 'akismet') . '</strong> - ' . esc_html__( 'Enter/remove an API key.' , 'akismet') . '</p>' .
                                                            '<p><strong>' . esc_html__( 'Comments' , 'akismet') . '</strong> - ' . esc_html__( 'Show the number of approved comments beside each comment author in the comments list page.' , 'akismet') . '</p>' .
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 203..205

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

                                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

                                                            '<p><strong>' . esc_html__( 'Akismet Configuration' , 'akismet') . '</strong></p>' .
                                                            '<p><strong>' . esc_html__( 'Subscription Type' , 'akismet') . '</strong> - ' . esc_html__( 'The Akismet subscription plan' , 'akismet') . '</p>' .
                                                            '<p><strong>' . esc_html__( 'Status' , 'akismet') . '</strong> - ' . esc_html__( 'The subscription status - active, cancelled or suspended' , 'akismet') . '</p>',
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 191..193

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

                                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 3 locations. Consider refactoring.
                                Open

                                                $current_screen->add_help_tab(
                                                    array(
                                                        'id'        => 'overview',
                                                        'title'        => __( 'Overview' , 'akismet'),
                                                        'content'    =>
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 162..171
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 175..184

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

                                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 3 locations. Consider refactoring.
                                Open

                                                $current_screen->add_help_tab(
                                                    array(
                                                        'id'        => 'overview',
                                                        'title'        => __( 'Overview' , 'akismet'),
                                                        'content'    =>
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 124..133
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 162..171

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

                                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 3 locations. Consider refactoring.
                                Open

                                                $current_screen->add_help_tab(
                                                    array(
                                                        'id'        => 'overview',
                                                        'title'        => __( 'Overview' , 'akismet'),
                                                        'content'    =>
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 124..133
                                Web.Admin/2014/wordpress/wp-content/plugins/akismet/class.akismet-admin.php on lines 175..184

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

                                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

                                There are no issues that match your filters.

                                Category
                                Status