When running rector against a Laravel project with the following code, it actually breaks the implementation:
Cache::put('cache_key', $somevalue, now()->addDay()); // it also accepts a Carbon (\DateTimeInterface) object
It turns it into this, which won't work:
Cache::put('cache_key', $somevalue, now()->addDay() * 60);
When running rector against a Laravel project with the following code, it actually breaks the implementation:
It turns it into this, which won't work: