Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

@@ 6393-6399 (lines=7) @@
6390
                    $msg = 'PHP Minor Problem (this message show logged in only)';
6391
                    break;
6392
                case E_STRICT:
6393
                case E_DEPRECATED:
6394
                    if ($this->error_reporting <= 1) {
6395
                        return true;
6396
                    }
6397
                    $isError = true;
6398
                    $msg = 'PHP Strict Standards Problem';
6399
                    break;
6400
                default:
6401
                    if ($this->error_reporting === 0) {
6402
                        return true;
@@ 6400-6405 (lines=6) @@
6397
                    $isError = true;
6398
                    $msg = 'PHP Strict Standards Problem';
6399
                    break;
6400
                default:
6401
                    if ($this->error_reporting === 0) {
6402
                        return true;
6403
                    }
6404
                    $isError = true;
6405
                    $msg = 'PHP Parse Error';
6406
            }
6407
        }
6408
        if (is_readable($file)) {