Verbs

Subscription

1<?php ...
2 
3namespace Thunk\Verbs\Examples\Subscriptions\States;
4 
5use Thunk\Verbs\State;
6 
7class SubscriptionState extends State
8{
9 public int $plan_id;
10 
11 public bool $is_active = false;
12}