Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6419-6425 (lines=7) @@
6416
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6417
                    break;
6418
                case E_STRICT:
6419
                case E_DEPRECATED:
6420
                    if ($this->error_reporting <= 1) {
6421
                        return true;
6422
                    }
6423
                    $isError = true;
6424
                    $msg = 'PHP Strict Standards Problem';
6425
                    break;
6426
                default:
6427
                    if ($this->error_reporting === 0) {
6428
                        return true;
@@ 6426-6431 (lines=6) @@
6423
                    $isError = true;
6424
                    $msg = 'PHP Strict Standards Problem';
6425
                    break;
6426
                default:
6427
                    if ($this->error_reporting === 0) {
6428
                        return true;
6429
                    }
6430
                    $isError = true;
6431
                    $msg = 'PHP Parse Error';
6432
            }
6433
        }
6434
        if (is_readable($file)) {