includes/server/class-llms-rest-students-progress-controller.php
File class-llms-rest-students-progress-controller.php
has 273 lines of code (exceeds 250 allowed). Consider refactoring. Open
Open
<?php
/**
* REST Controller for Student Progress.
*
* @package LifterLMS_REST/Classes
Method get_item_schema_base
has 49 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
protected function get_item_schema_base() {
return array(
'$schema' => 'http://json-schema.org/draft-04/schema#',
'title' => 'students-progress',
Method register_routes
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function register_routes() {
register_rest_route(
$this->namespace,
'/' . $this->rest_base,
Function update_object
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
protected function update_object( $prepared, $request ) {
if ( in_array( get_post_type( $prepared['post_id'] ), array( 'course', 'section' ), true ) ) {
$post = llms_get_post( $prepared['post_id'] );
$lessons = $post->get_lessons( 'ids' );
- Read upRead up
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"