BlockMarkup
2 weeks ago
CSS
2 weeks ago
DataFormatConsumer
2 weeks ago
DataFormatProducer
2 weeks ago
EntityReader
2 weeks ago
EntityWriter
2 weeks ago
Importer
2 weeks ago
URL
2 weeks ago
vendor-patched
2 weeks ago
LICENSE.md
2 weeks ago
README.md
2 weeks ago
class-dataliberationexception.php
2 weeks ago
class-dataliberationhtmlprocessor.php
2 weeks ago
class-importentity.php
2 weeks ago
composer.json
2 weeks ago
rector.php
2 weeks 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 |