Code Duplication    Length = 6-7 lines in 2 locations

manager/includes/src/Core.php 2 locations

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