領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 satır
383B

  1. <?php
  2. namespace App\Logic\ReceiptIssuingOrder;
  3. use App\Models\ReceiptIssuingOrder;
  4. class TokenCheckManager extends ReceiptIssuingOrderManager
  5. {
  6. public function __construct(
  7. protected ReceiptIssuingOrder $order,
  8. ) {
  9. parent::__construct($order);
  10. }
  11. public function check(string $token): bool
  12. {
  13. return $this->checkToken($token);
  14. }
  15. }