for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VasilDakov\Speedy\Model;
use VasilDakov\Speedy\ToArray;
/**
* Class Sender
*
* @author Vasil Dakov <[email protected]>
* @copyright 2009-2022 Neutrino.bg
* @version 1.0
* @psalm-suppress MissingConstructor
*/
class Sender extends Client
{
use ToArray;
* @var int|null
private ?int $dropoffOfficeId = null;
* @return ?int
public function getDropoffOfficeId(): ?int
return $this->dropoffOfficeId;
}
* @param ?int $dropoffOfficeId
public function setDropoffOfficeId(?int $dropoffOfficeId): void
$this->dropoffOfficeId = $dropoffOfficeId;