src/Application/CommandBus/Command/Apple/TogglePremiumBySavedReceiptCommand.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Application\CommandBus\Command\Apple;
  3. class TogglePremiumBySavedReceiptCommand
  4. {
  5.     public string $user;
  6.     public function __construct(string $user)
  7.     {
  8.         $this->user $user;
  9.     }
  10. }