CaffGeek/MBACNationals

View on GitHub
Web.Admin/2014/wordpress/wp-includes/load.php

Summary

Maintainability
F
3 days
Test Coverage

Function wp_load_translations_early has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
Open

function wp_load_translations_early() {
    global $text_direction, $wp_locale;

    static $loaded = false;
    if ( $loaded )
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 6 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

File load.php has 364 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * These functions are needed to load WordPress.
 *
 * @internal This file must be parsable by PHP4.
Severity: Minor
Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 4 hrs to fix

    Function wp_fix_server_vars has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
    Open

    function wp_fix_server_vars() {
        global $PHP_SELF;
    
        $default_server_values = array(
            'SERVER_SOFTWARE' => '',
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/load.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

    Method wp_load_translations_early has 47 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function wp_load_translations_early() {
        global $text_direction, $wp_locale;
    
        static $loaded = false;
        if ( $loaded )
    Severity: Minor
    Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 1 hr to fix

      Function wp_start_object_cache has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

      function wp_start_object_cache() {
          global $blog_id;
      
          $first_init = false;
           if ( ! function_exists( 'wp_cache_init' ) ) {
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/load.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 wp_set_lang_dir has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
      Open

      function wp_set_lang_dir() {
          if ( !defined( 'WP_LANG_DIR' ) ) {
              if ( file_exists( WP_CONTENT_DIR . '/languages' ) && @is_dir( WP_CONTENT_DIR . '/languages' ) || !@is_dir(ABSPATH . WPINC . '/languages') ) {
                  define( 'WP_LANG_DIR', WP_CONTENT_DIR . '/languages' ); // no leading slash, no trailing slash, full path, not relative to ABSPATH
                  if ( !defined( 'LANGDIR' ) ) {
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/load.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 wp_fix_server_vars has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function wp_fix_server_vars() {
          global $PHP_SELF;
      
          $default_server_values = array(
              'SERVER_SOFTWARE' => '',
      Severity: Minor
      Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 1 hr to fix

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

        function wp_maintenance() {
            if ( !file_exists( ABSPATH . '.maintenance' ) || defined( 'WP_INSTALLING' ) )
                return;
        
            global $upgrading;
        Severity: Minor
        Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 1 hr to fix

          Function wp_get_active_and_valid_plugins has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_get_active_and_valid_plugins() {
              $plugins = array();
              $active_plugins = (array) get_option( 'active_plugins', array() );
          
              // Check for hacks file if the option is enabled
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/load.php - About 55 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 wp_debug_mode has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_debug_mode() {
              if ( WP_DEBUG ) {
                  error_reporting( E_ALL );
          
                  if ( WP_DEBUG_DISPLAY )
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/load.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 wp_maintenance has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_maintenance() {
              if ( !file_exists( ABSPATH . '.maintenance' ) || defined( 'WP_INSTALLING' ) )
                  return;
          
              global $upgrading;
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/load.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 wp_unregister_GLOBALS has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          function wp_unregister_GLOBALS() {
              if ( !ini_get( 'register_globals' ) )
                  return;
          
              if ( isset( $_REQUEST['GLOBALS'] ) )
          Severity: Minor
          Found in Web.Admin/2014/wordpress/wp-includes/load.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

          There are no issues that match your filters.

          Category
          Status