# simpleanalytics/1.66/rector.php

Simple Analytics, version 1.66. 18 lines.

- Page: https://pluginprobe.com/plugins/simpleanalytics/1.66/code/rector.php
- Raw: https://pluginprobe.com/plugins/simpleanalytics/1.66/raw/rector.php
- Modified: 2024-09-13T11:41:00+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/simpleanalytics/1.66/code/rector.php#L10-L20`.

```php
<?php

declare(strict_types=1);

use Rector\Set\ValueObject\DowngradeLevelSetList;
use Rector\Config\RectorConfig;

return RectorConfig::configure()
    ->withPaths([
        __DIR__ . '/src',
        __DIR__ . '/simple-analytics.php',
        __DIR__ . '/helpers.php'
    ])
    ->withSets([
        // https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
        DowngradeLevelSetList::DOWN_TO_PHP_72
    ]);

```
