# windpress/3.0.2/vendor/rosua/leak/rector.php

WindPress – Tailwind CSS integration for WordPress, version 3.0.2. 16 lines.

- Page: https://pluginprobe.com/plugins/windpress/3.0.2/code/vendor/rosua/leak/rector.php
- Raw: https://pluginprobe.com/plugins/windpress/3.0.2/raw/vendor/rosua/leak/rector.php
- Modified: 2024-08-28T03:03:42+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/windpress/3.0.2/code/vendor/rosua/leak/rector.php#L10-L20`.

```php
<?php

declare (strict_types=1);
namespace WindPressPackages;

use WindPressPackages\Rector\Config\RectorConfig;
use WindPressPackages\Rector\Php74\Rector\Property\TypedPropertyRector;
use WindPressPackages\Rector\Set\ValueObject\LevelSetList;
use WindPressPackages\Rector\Set\ValueObject\SetList;
use WindPressPackages\Rector\Set\ValueObject\DowngradeLevelSetList;
return static function (RectorConfig $rectorConfig): void {
    $rectorConfig->paths([__DIR__ . '/src']);
    // define sets of rules
    $rectorConfig->sets([SetList::NAMING, SetList::CODE_QUALITY, SetList::CODING_STYLE, LevelSetList::UP_TO_PHP_74, DowngradeLevelSetList::DOWN_TO_PHP_74]);
};

```
