File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 24
24
"phpstan/phpstan" : " ^1.7.1" ,
25
25
"phpunit/phpunit" : " ^9.1" ,
26
26
"predis/predis" : " ^1.1 || ^2.0" ,
27
- "rector/rector" : " 0.14.0 "
27
+ "rector/rector" : " 0.14.1 "
28
28
},
29
29
"suggest" : {
30
30
"ext-imagick" : " If you use Image class ImageMagickHandler" ,
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ private function discoverFilters()
134
134
$ className = $ locator ->getClassname ($ file );
135
135
136
136
// Don't include our main Filter config again...
137
- if ($ className === ' Config \\ Filters ' ) {
137
+ if ($ className === FiltersConfig::class ) {
138
138
continue ;
139
139
}
140
140
Original file line number Diff line number Diff line change 29
29
defined ('HOMEPATH ' ) || define ('HOMEPATH ' , realpath (rtrim (getcwd (), '\\/ ' )) . DIRECTORY_SEPARATOR );
30
30
$ source = is_dir (HOMEPATH . 'app ' )
31
31
? HOMEPATH
32
- : (is_dir ('vendor/codeigniter4/framework/ ' )
33
- ? 'vendor/codeigniter4/framework/ '
34
- : 'vendor/codeigniter4/codeigniter4/ ' );
32
+ : (is_dir ('vendor/codeigniter4/framework/ ' ) ? 'vendor/codeigniter4/framework/ ' : 'vendor/codeigniter4/codeigniter4/ ' );
35
33
defined ('CONFIGPATH ' ) || define ('CONFIGPATH ' , realpath ($ source . 'app/Config ' ) . DIRECTORY_SEPARATOR );
36
34
defined ('PUBLICPATH ' ) || define ('PUBLICPATH ' , realpath ($ source . 'public ' ) . DIRECTORY_SEPARATOR );
37
35
unset($ source );
You can’t perform that action at this time.
0 commit comments