Find the best Rector rule to solve your problem. Searching through 1010 rules.
Found 1 rule. That's the one:
Renames the Billable stripeOptions() to stripe().
use Illuminate\Database\Eloquent\Model;
use Laravel\Cashier\Billable;
class User extends Model
{
use Billable;
- public function stripeOptions(array $options = []) {
+ public function stripe(array $options = []) {
return [];
}
}