Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

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