Find the best Rector rule to solve your problem. Searching through 1010 rules.

Found 1 rule. That's the one:

CashierStripeOptionsToStripeRector

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 [];
     }
 }
SETS:  laravel/cashier
PACKAGE:  laravel/cashier >=13.0