for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* Application Command Class
* @package Ticaje_BookingApi
* @author Hector Luis Barrientos <[email protected]>
*/
namespace Ticaje\BookingApi\Application\UseCase\Command;
use Ticaje\Contract\Traits\BaseDto;
use Ticaje\BookingApi\Application\Signatures\UseCase\Command\GetPickupLocationCommandSignature;
* Class GetPickupLocationCommand
* @package Ticaje\BookingApi\Application\UseCase\Command
class GetPickupLocationCommand implements GetPickupLocationCommandSignature
{
use BaseDto;
private $product;
private $storeId = 0;
$storeId
private $fromDate;
$fromDate
private $toDate;
$toDate
private $aggregate;
$aggregate
* @inheritDoc
public function setProduct(&$product): GetPickupLocationCommandSignature
$this->product = $product;
return $this;
}