gocodebox/lifterlms

View on GitHub
includes/class-llms-loader.php

Summary

Maintainability
C
1 day
Test Coverage
F
23%

Function autoload has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    public function autoload( $class ) {

        $class = strtolower( $class );
        if ( 0 !== strpos( $class, 'llms_' ) && 'lifterlms' !== $class && 'meta_box_field_interface' !== $class ) {
            return;
Severity: Minor
Found in includes/class-llms-loader.php - About 2 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 class-llms-loader.php has 254 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * LifterLMS file loader
 *
 * @package LifterLMS/Classes
Severity: Minor
Found in includes/class-llms-loader.php - About 2 hrs to fix

    Method autoload has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function autoload( $class ) {
    
            $class = strtolower( $class );
            if ( 0 !== strpos( $class, 'llms_' ) && 'lifterlms' !== $class && 'meta_box_field_interface' !== $class ) {
                return;
    Severity: Major
    Found in includes/class-llms-loader.php - About 2 hrs to fix

      Method includes has 49 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function includes() {
      
              // Instantiate LLMS_Shortcodes before LLMS_Controller_Orders.
              require_once LLMS_PLUGIN_DIR . 'includes/shortcodes/class.llms.shortcodes.php';
              require_once LLMS_PLUGIN_DIR . 'includes/shortcodes/class.llms.shortcodes.blocks.php';
      Severity: Minor
      Found in includes/class-llms-loader.php - About 1 hr to fix

        Method includes_libraries has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function includes_libraries() {
        
                $libs = array(
                    'blocks' => array(
                        'const' => 'LLMS_BLOCKS_LIB',
        Severity: Minor
        Found in includes/class-llms-loader.php - About 1 hr to fix

          Method includes_admin has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function includes_admin() {
          
                  // Functions.
                  require_once LLMS_PLUGIN_DIR . 'includes/admin/llms.functions.admin.php';
          
          
          Severity: Minor
          Found in includes/class-llms-loader.php - About 1 hr to fix

            There are no issues that match your filters.

            Category
            Status