Skip to content

Commit 5d3bd72

Browse files
committed
re-run rector
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
1 parent 997be6d commit 5d3bd72

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

system/Filters/Filters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private function discoverFilters()
134134
$className = $locator->getClassname($file);
135135

136136
// Don't include our main Filter config again...
137-
if ($className === 'Config\\Filters') {
137+
if ($className === FiltersConfig::class) {
138138
continue;
139139
}
140140

system/Test/bootstrap.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@
2929
defined('HOMEPATH') || define('HOMEPATH', realpath(rtrim(getcwd(), '\\/ ')) . DIRECTORY_SEPARATOR);
3030
$source = is_dir(HOMEPATH . 'app')
3131
? 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/');
3533
defined('CONFIGPATH') || define('CONFIGPATH', realpath($source . 'app/Config') . DIRECTORY_SEPARATOR);
3634
defined('PUBLICPATH') || define('PUBLICPATH', realpath($source . 'public') . DIRECTORY_SEPARATOR);
3735
unset($source);

0 commit comments

Comments
 (0)