Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6076-6082 (lines=7) @@
6073
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6074
                    break;
6075
                case E_STRICT:
6076
                case E_DEPRECATED:
6077
                    if ($this->error_reporting <= 1) {
6078
                        return true;
6079
                    }
6080
                    $isError = true;
6081
                    $msg = 'PHP Strict Standards Problem';
6082
                    break;
6083
                default:
6084
                    if ($this->error_reporting === 0) {
6085
                        return true;
@@ 6083-6088 (lines=6) @@
6080
                    $isError = true;
6081
                    $msg = 'PHP Strict Standards Problem';
6082
                    break;
6083
                default:
6084
                    if ($this->error_reporting === 0) {
6085
                        return true;
6086
                    }
6087
                    $isError = true;
6088
                    $msg = 'PHP Parse Error';
6089
            }
6090
        }
6091
        if (is_readable($file)) {