src/Message/Query/Beauty/Offer/GetMastersQuery.php line 9

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Slivki\Message\Query\Beauty\Offer;
  4. use Slivki\Messenger\Query\QueryInterface;
  5. final class GetMastersQuery implements QueryInterface
  6. {
  7.     private int $offerId;
  8.     public function __construct(int $offerId)
  9.     {
  10.         $this->offerId $offerId;
  11.     }
  12.     public function getOfferId(): int
  13.     {
  14.         return $this->offerId;
  15.     }
  16. }