Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6380-6386 (lines=7) @@
6377
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6378
                    break;
6379
                case E_STRICT:
6380
                case E_DEPRECATED:
6381
                    if ($this->error_reporting <= 1) {
6382
                        return true;
6383
                    }
6384
                    $isError = true;
6385
                    $msg = 'PHP Strict Standards Problem';
6386
                    break;
6387
                default:
6388
                    if ($this->error_reporting === 0) {
6389
                        return true;
@@ 6387-6392 (lines=6) @@
6384
                    $isError = true;
6385
                    $msg = 'PHP Strict Standards Problem';
6386
                    break;
6387
                default:
6388
                    if ($this->error_reporting === 0) {
6389
                        return true;
6390
                    }
6391
                    $isError = true;
6392
                    $msg = 'PHP Parse Error';
6393
            }
6394
        }
6395
        if (is_readable($file)) {