Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sonata-project/SonataDoctrineORMAdminBundle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50cf28ce75149845ca6fe302c8774e91a08a121a
Choose a base ref
..
head repository: sonata-project/SonataDoctrineORMAdminBundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8dc3aedfe18e9bb98deede78ba49eb38b7095a1d
Choose a head ref
Showing with 2 additions and 0 deletions.
  1. +2 −0 rector.php
2 changes: 2 additions & 0 deletions rector.php
Original file line number Diff line number Diff line change
@@ -19,6 +19,7 @@

use Rector\Config\RectorConfig;
use Rector\Php70\Rector\FunctionLike\ExceptionHandlerTypehintRector;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\NarrowUnusedSetUpDefinedPropertyRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
@@ -40,6 +41,7 @@
$rectorConfig->importShortClasses(false);
$rectorConfig->skip([
ExceptionHandlerTypehintRector::class,
ReadOnlyPropertyRector::class,
PreferPHPUnitThisCallRector::class,
NarrowUnusedSetUpDefinedPropertyRector::class,
]);