VerifyTokenInput.php 429 B

12345678910111213
  1. <?php
  2. namespace Webkul\BagistoApi\Dto;
  3. /**
  4. * DTO for verifying customer token
  5. * This is used in GraphQL mutations to validate token and get customer details
  6. * Token is passed via Authorization: Bearer header, NOT as input parameter.
  7. *
  8. * NOTE: Token is NOT a DTO property. It is extracted from the Authorization header
  9. * via TokenHeaderFacade::getAuthorizationBearerToken() in the processor.
  10. */
  11. class VerifyTokenInput {}