Skip to content

Commit

Permalink
Update typehint
Browse files Browse the repository at this point in the history
  • Loading branch information
that-guy-iain committed Dec 14, 2024
1 parent 1d3f0d1 commit 138727e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developer/events/customer.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use BillaBear\Entity\Customer;

class CustomerCreated
{
public const NAME = 'billabear.customer.created';
public const string NAME = 'billabear.customer.created';

public function __construct(public readonly Customer $customer)
{
Expand All @@ -47,7 +47,7 @@ use BillaBear\Entity\Customer;

class CustomerDisabled
{
public const NAME = 'billabear.customer.disabled';
public const string NAME = 'billabear.customer.disabled';

public function __construct(public readonly Customer $customer)
{
Expand All @@ -72,7 +72,7 @@ use BillaBear\Entity\Customer;

class CustomerEnabled
{
public const NAME = 'billabear.customer.enabled';
public const string NAME = 'billabear.customer.enabled';

public function __construct(public readonly Customer $customer)
{
Expand Down

0 comments on commit 138727e

Please sign in to comment.