BlockMarkup
6 days ago
CSS
6 days ago
DataFormatConsumer
6 days ago
DataFormatProducer
6 days ago
EntityReader
6 days ago
EntityWriter
6 days ago
Importer
6 days ago
URL
6 days ago
vendor-patched
6 days ago
LICENSE.md
6 days ago
README.md
6 days ago
class-dataliberationexception.php
6 days ago
class-dataliberationhtmlprocessor.php
6 days ago
class-importentity.php
6 days ago
composer.json
6 days ago
rector.php
6 days ago
rector.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | declare( strict_types=1 ); |
| 4 | |
| 5 | use Rector\Config\RectorConfig; |
| 6 | |
| 7 | return RectorConfig::configure() |
| 8 | ->withPaths( |
| 9 | array( |
| 10 | __DIR__ . '/vendor-patched/brick', |
| 11 | ) |
| 12 | ) |
| 13 | ->withDowngradeSets( |
| 14 | false, |
| 15 | false, |
| 16 | false, |
| 17 | false, |
| 18 | false, |
| 19 | true |
| 20 | ) |
| 21 | ->withTypeCoverageLevel( 0 ); |
| 22 |