Supported Versions: PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8
Filters elements of an array using a callback function
<?php array_filter(array $array, ?callable $callback = null, int $mode = 0): array
<?php public function definition(): array
{
return [
'classificationType' => fake()->randomElement(array_filter(ExpenseClassificationType::cases(), fn($c) => $c !== ExpenseClassificationType::E3_585_017)),
'classificationCategory' => fake()->randomElement(ExpenseClassificationCategory::cases()),
'amount' => fake()->randomFloat(2, 0, 1000),
'vatAmount' => fake()->randomFloat(2, 0, 100),
<?php $params = compact('dateFrom', 'dateTo', 'receiverVatNumber', 'entityVatNumber', 'invType', 'maxMark', 'nextPartitionKey', 'nextRowKey');
$query = array_merge($query, array_filter($params));
$responseXML = $this->get($query);
<?php $invType = $invType instanceof InvoiceType ? $invType->value : $invType;
$query = compact('dateFrom', 'dateTo', 'counterVatNumber', 'entityVatNumber', 'invType', 'nextPartitionKey', 'nextRowKey');
$query = array_filter($query);
$responseXML = $this->get($query);
<?php public function handle(string $dateFrom, string $dateTo, string $entityVatNumber = null, bool $groupedPerDay = false, string $nextPartitionKey = null, string $nextRowKey = null): RequestedE3Info
{
$query = array_filter([
'dateFrom' => $dateFrom,
'dateTo' => $dateTo,
'entityVatNumber' => $entityVatNumber,
'GroupedPerDay' => $groupedPerDay ? "true" : "false",
'nextPartitionKey' => $nextPartitionKey,
'nextRowKey' => $nextRowKey
], fn($value) => $value !== null);
$responseXML = $this->get($query);
<?php public function handle(string $dateFrom, string $dateTo, string $entityVatNumber = null, bool $groupedPerDay = false, string $nextPartitionKey = null, string $nextRowKey = null): RequestedVatInfo
{
$query = array_filter([
'dateFrom' => $dateFrom,
'dateTo' => $dateTo,
'entityVatNumber' => $entityVatNumber,
'GroupedPerDay' => $groupedPerDay ? "true" : "false",
'nextPartitionKey' => $nextPartitionKey,
'nextRowKey' => $nextRowKey
], fn($value) => $value !== null);
$responseXML = $this->get($query);
<?php $this->assertIsArray($rows);
$this->assertCount(6, $rows);
$this->assertCount(5, array_filter($invoice->getInvoiceDetails(), fn($row) => $row->getRecType() === RecType::TYPE_5));
for ($i = 0; $i < count($rows); $i++) {
$this->assertEquals($i + 1, $rows[$i]->getLineNumber());
<?php $invoice->squashInvoiceRows();
$rows = $invoice->getInvoiceDetails();
$notVat195Rows = array_filter($invoice->getInvoiceDetails(), fn($row) => $row->getNotVAT195() === true);
$this->assertIsArray($rows);
$this->assertCount(2, $rows);