for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OrcaServices\NovaApi\Result;
use Cake\Chronos\Chronos;
/**
* NovaServiceResult.
*/
final class NovaServiceResult
{
* Tkid.
*
* @var string
public $tkId;
* Valid start date.
* @var Chronos
public $validFrom;
* Valid end date.
public $validTo;
* Product number.
public $productNumber;
* Restricted to zones.
* @var string[]
private $zones = [];
* Add zones.
* @param string $zone The zone
* @return void
public function addZone(string $zone)
$this->zones[] = $zone;
}
* Get a list of zones.
* @return string[] List of zones
public function getZones(): array
return $this->zones;