for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Fousky\Component\iDoklad\Model\System;
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
/**
* @author Lukáš Brzák <[email protected]>
*/
class CodeBooksChangesApiModel extends iDokladAbstractModel
{
public $Bank = false;
public $ConstantSymbols = false;
public $Country = false;
public $Currencies = false;
public $ExchangeRates = false;
public $PaymentOptions = false;
public $VatRates = false;
* @return bool
public function wasChangedBank(): bool
return $this->Bank;
}
public function wasChangedConstantSymbols(): bool
return $this->ConstantSymbols;
public function wasChangedCountry(): bool
return $this->Country;
public function wasChangedCurrencies(): bool
return $this->Currencies;
public function wasChangedExchangeRates(): bool
return $this->ExchangeRates;
public function wasChangedPaymentOptions(): bool
return $this->PaymentOptions;
public function wasChangedVatRates(): bool
return $this->VatRates;