for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpCfdi\RfcLinc\Domain;
class Catalog
{
/** @var VersionDate version of the current version */
private $date;
/** @var int */
private $records;
private $inserted;
private $updated;
private $deleted;
public function __construct(VersionDate $date, int $records, int $inserted, int $updated, int $deleted)
$this->date = $date;
$this->records = $records;
$this->inserted = $inserted;
$this->updated = $updated;
$this->deleted = $deleted;
}
public function date(): VersionDate
return $this->date;
public function records(): int
return $this->records;
public function inserted(): int
return $this->inserted;
public function updated(): int
return $this->updated;
public function deleted(): int
return $this->deleted;
public function setRecords(int $records)
public function setInserted(int $inserted)
public function setUpdated(int $updated)
public function setDeleted(int $deleted)