GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 3-3 lines in 3 locations

symphony/content/content.blueprintsdatasources.php 1 location

@@ 1379-1381 (lines=3) @@
1376
            $providers = Symphony::ExtensionManager()->getProvidersOf(iProvider::DATASOURCE);
1377
            $providerClass = null;
1378
1379
            if (trim($fields['name']) === '') {
1380
                $this->_errors['name'] = __('This is a required field');
1381
            }
1382
1383
            if ($fields['source'] === 'static_xml') {
1384
                if (trim($fields['static_xml']) === '') {

symphony/content/content.blueprintsevents.php 2 locations

@@ 390-392 (lines=3) @@
387
            $providers = Symphony::ExtensionManager()->getProvidersOf(iProvider::EVENT);
388
            $providerClass = null;
389
390
            if (trim($fields['name']) === '') {
391
                $this->_errors['name'] = __('This is a required field');
392
            }
393
394
            if (trim($fields['source']) === '') {
395
                $this->_errors['source'] = __('This is a required field');
@@ 394-396 (lines=3) @@
391
                $this->_errors['name'] = __('This is a required field');
392
            }
393
394
            if (trim($fields['source']) === '') {
395
                $this->_errors['source'] = __('This is a required field');
396
            }
397
398
            $filters = isset($fields['filters']) ? $fields['filters'] : array();
399