Browse
For agents
About
Simple Analytics
/
trunk
Simple Analytics
vtrunk
Switch version
1.109
1.108
1.107
1.106
1.73
1.74
1.75
1.76
1.77
1.78
1.79
1.8
1.80
1.81
1.82
1.83
1.84
1.85
1.86
1.87
1.88
1.89
1.9
1.90
1.91
All 98 releases
Overview
Code
simpleanalytics
/
rector.php
rector.php
in Simple Analytics trunk, at rector.php
18 lines
452 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
declare
(
strict_types
=
1
)
;
4
5
use
Rector
\
Set
\
ValueObject
\
DowngradeLevelSetList
;
6
use
Rector
\
Config
\
RectorConfig
;
7
8
return
RectorConfig
::
configure
(
)
9
->
withPaths
(
[
10
__DIR__
.
'
/src
'
,
11
__DIR__
.
'
/simple-analytics.php
'
,
12
__DIR__
.
'
/helpers.php
'
13
]
)
14
->
withSets
(
[
15
//
https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/
16
DowngradeLevelSetList
::
DOWN_TO_PHP_72
17
]
)
;
18