mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
chore: fallback null on cache directory to use default rector cache directory
This commit is contained in:
parent
f7860e16ad
commit
86480f498a
@ -72,7 +72,7 @@ return RectorConfig::configure()
|
||||
->withParallel(120, 8, 10)
|
||||
->withCache(
|
||||
// Github action cache or local
|
||||
is_dir('/tmp') ? '/tmp/rector' : sys_get_temp_dir() . '/rector',
|
||||
is_dir('/tmp') ? '/tmp/rector' : null,
|
||||
FileCacheStorage::class
|
||||
)
|
||||
// paths to refactor; solid alternative to CLI arguments
|
||||
|
Loading…
x
Reference in New Issue
Block a user