Supported Versions: PHP 5 >= 5.2.0, PHP 7, PHP 8
Filters a variable with a specified filter
<?php filter_var(mixed $value, int $filter = FILTER_DEFAULT, array|int $options = 0): mixed
<?php public function isVatPaymentSuspension(): ?bool
{
return filter_var($this->get('vatPaymentSuspension'), FILTER_VALIDATE_BOOLEAN);
}
<?php public function isSelfPricing(): ?bool
{
return filter_var($this->get('selfPricing'), FILTER_VALIDATE_BOOLEAN);
}
<?php public function isFuelInvoice(): ?bool
{
return filter_var($this->get('fuelInvoice'), FILTER_VALIDATE_BOOLEAN);
}
<?php public function getIsDeliveryNote(): bool
{
return filter_var($this->get('isDeliveryNote'), FILTER_VALIDATE_BOOLEAN);
}
<?php public function getThirdPartyCollection(): bool
{
return filter_var($this->get('thirdPartyCollection'), FILTER_VALIDATE_BOOLEAN);
}
<?php if ($value === 'true' || $value === 'false') {
return filter_var($value, FILTER_VALIDATE_BOOLEAN);
}
$cast = $this->getCast($key);
<?php }
if ($cast === 'float') {
return filter_var($value, FILTER_VALIDATE_FLOAT);
}
if ($cast === 'int') {
<?php }
if ($cast === 'int') {
return filter_var($value, FILTER_VALIDATE_INT);
}
<?php public function isCancelled(): bool
{
return filter_var($this->get('IsCancelled'), FILTER_VALIDATE_BOOLEAN);
}
<?php $this->assertEquals($row->getDienergia()->getApplicationDate(), $rowXml->dienergia->applicationDate);
$this->assertEquals($row->getDienergia()->getDoy(), $rowXml->dienergia->doy);
$this->assertEquals($row->getDienergia()->getShipId(), $rowXml->dienergia->shipId);
$this->assertEquals($row->isDiscountOption(), filter_var($rowXml->discountOption, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($row->getWithheldAmount(), $rowXml->withheldAmount);
$this->assertEquals($row->getWithheldPercentCategory()->value, $rowXml->withheldPercentCategory);
$this->assertEquals($row->getStampDutyAmount(), $rowXml->stampDutyAmount);
<?php $this->assertEquals($row->getQuantity15(), $rowXml->quantity15);
$this->assertEquals($row->getOtherMeasurementUnitQuantity(), $rowXml->otherMeasurementUnitQuantity);
$this->assertEquals($row->getOtherMeasurementUnitTitle(), $rowXml->otherMeasurementUnitTitle);
$this->assertEquals($row->getNotVAT195(), filter_var($rowXml->notVAT195, FILTER_VALIDATE_BOOLEAN));
$icls = $invoice->getInvoiceDetails()[0]->getIncomeClassification()[0];
$this->assertEquals($icls->getClassificationType()->value, $rowXml->incomeClassification->get('icls:classificationType'));
<?php $this->assertEquals($header->getAa(), $headerXml->aa);
$this->assertEquals($header->getIssueDate(), $headerXml->issueDate);
$this->assertEquals($header->getInvoiceType()->value, $headerXml->invoiceType);
$this->assertEquals($header->isVatPaymentSuspension(), filter_var($headerXml->vatPaymentSuspension, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getCurrency(), $headerXml->currency);
$this->assertEquals($header->getExchangeRate(), $headerXml->exchangeRate);
$this->assertEquals($header->isSelfPricing(), filter_var($headerXml->selfPricing, FILTER_VALIDATE_BOOLEAN));
<?php $this->assertEquals($header->isVatPaymentSuspension(), filter_var($headerXml->vatPaymentSuspension, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getCurrency(), $headerXml->currency);
$this->assertEquals($header->getExchangeRate(), $headerXml->exchangeRate);
$this->assertEquals($header->isSelfPricing(), filter_var($headerXml->selfPricing, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getDispatchDate(), $headerXml->dispatchDate);
$this->assertEquals($header->getDispatchTime(), $headerXml->dispatchTime);
$this->assertEquals($header->getVehicleNumber(), $headerXml->vehicleNumber);
<?php $this->assertEquals($header->getDispatchTime(), $headerXml->dispatchTime);
$this->assertEquals($header->getVehicleNumber(), $headerXml->vehicleNumber);
$this->assertEquals($header->getMovePurpose()->value, $headerXml->movePurpose);
$this->assertEquals($header->isFuelInvoice(), filter_var($headerXml->fuelInvoice, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getSpecialInvoiceCategory()->value, $headerXml->specialInvoiceCategory);
$this->assertEquals($header->getInvoiceVariationType()->value, $headerXml->invoiceVariationType);
$this->assertEquals($header->getIsDeliveryNote(), filter_var($headerXml->isDeliveryNote, FILTER_VALIDATE_BOOLEAN));
<?php $this->assertEquals($header->isFuelInvoice(), filter_var($headerXml->fuelInvoice, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getSpecialInvoiceCategory()->value, $headerXml->specialInvoiceCategory);
$this->assertEquals($header->getInvoiceVariationType()->value, $headerXml->invoiceVariationType);
$this->assertEquals($header->getIsDeliveryNote(), filter_var($headerXml->isDeliveryNote, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getOtherMovePurposeTitle(), $headerXml->otherMovePurposeTitle);
$this->assertEquals($header->getThirdPartyCollection(), filter_var($headerXml->thirdPartyCollection, FILTER_VALIDATE_BOOLEAN));
$this->assertEquals($header->getTableAA(), $headerXml->tableAA);