skyverge/wc-plugin-framework

View on GitHub
woocommerce/class-sv-wc-admin-notice-handler.php

Summary

Maintainability
A
3 hrs
Test Coverage

Method render_admin_notice_js has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function render_admin_notice_js() {

        // if there were no notices, or we've already rendered the js, there's nothing to do
        if ( empty( $this->admin_notices ) || self::$admin_notice_js_rendered ) {
            return;
Severity: Minor
Found in woocommerce/class-sv-wc-admin-notice-handler.php - About 1 hr to fix

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

        public function render_admin_notices( $is_visible = true ) {
    
            // default for actions
            if ( ! is_bool( $is_visible ) ) {
                $is_visible = true;
    Severity: Minor
    Found in woocommerce/class-sv-wc-admin-notice-handler.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 should_display_notice has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        public function should_display_notice( $message_id, $params = array() ) {
    
            // bail out if user is not a shop manager
            if ( ! current_user_can( 'manage_woocommerce' ) ) {
                return false;
    Severity: Minor
    Found in woocommerce/class-sv-wc-admin-notice-handler.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

    There are no issues that match your filters.

    Category
    Status