Showing 8 of 14 total issues
Meta_Data
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class Meta_Data {
/**
* Object type meta applies to
*
* @var string
Method register
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function register( Registerable $registerable ): void {
if ( ! is_a( $registerable, Additional_Meta_Data_Controller::class ) ) {
throw new Exception( 'Registerable must be an instance of Additional_Meta_Data_Controller' );
}
Method register
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function register( Meta_Box $meta_box ): void {
if ( ! $this->validator->verify_meta_box( $meta_box ) ) {
throw new Exception(
sprintf(
Function register
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function register( Registerable $registerable ): void {
if ( ! is_a( $registerable, Additional_Meta_Data_Controller::class ) ) {
throw new Exception( 'Registerable must be an instance of Additional_Meta_Data_Controller' );
}
- 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"
Further reading
Method process_post_type
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function process_post_type( Post_Type $post_type_registerable ) {
// Register registerable.
$this->loader->action(
'init',
static function() use ( $post_type_registerable ) {
Function process
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function process( object $class ): object {
if ( ! is_a( $class, Registerable::class ) ) {
return $class;
}
- 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"
Further reading
Function create_rest_update_method
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function create_rest_update_method( Meta_Data $meta ): \Closure {
/**
* @param mixed $value
* @param \WP_Post|\WP_Term|\WP_User|\WP_Comment $object
*/
- 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"
Further reading
Function create_rest_get_method
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function create_rest_get_method( Meta_Data $meta ): callable {
return function( $model ) use ( $meta ) {
switch ( $meta->get_meta_type() ) {
case 'post':
$value = get_post_meta( $model['id'], $meta->get_meta_key(), true );
- 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"