Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6085-6091 (lines=7) @@
6082
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6083
                    break;
6084
                case E_STRICT:
6085
                case E_DEPRECATED:
6086
                    if ($this->error_reporting <= 1) {
6087
                        return true;
6088
                    }
6089
                    $isError = true;
6090
                    $msg = 'PHP Strict Standards Problem';
6091
                    break;
6092
                default:
6093
                    if ($this->error_reporting === 0) {
6094
                        return true;
@@ 6092-6097 (lines=6) @@
6089
                    $isError = true;
6090
                    $msg = 'PHP Strict Standards Problem';
6091
                    break;
6092
                default:
6093
                    if ($this->error_reporting === 0) {
6094
                        return true;
6095
                    }
6096
                    $isError = true;
6097
                    $msg = 'PHP Parse Error';
6098
            }
6099
        }
6100
        if (is_readable($file)) {