Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

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