Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6130-6136 (lines=7) @@
6127
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6128
                    break;
6129
                case E_STRICT:
6130
                case E_DEPRECATED:
6131
                    if ($this->error_reporting <= 1) {
6132
                        return true;
6133
                    }
6134
                    $isError = true;
6135
                    $msg = 'PHP Strict Standards Problem';
6136
                    break;
6137
                default:
6138
                    if ($this->error_reporting === 0) {
6139
                        return true;
@@ 6137-6142 (lines=6) @@
6134
                    $isError = true;
6135
                    $msg = 'PHP Strict Standards Problem';
6136
                    break;
6137
                default:
6138
                    if ($this->error_reporting === 0) {
6139
                        return true;
6140
                    }
6141
                    $isError = true;
6142
                    $msg = 'PHP Parse Error';
6143
            }
6144
        }
6145
        if (is_readable($file)) {