Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Create array containing variables and their values
<?php compact(array|string $var_name, array|string ...$var_names): array
<?php     public function handle(string $mark = '', string $dateFrom = null, string $dateTo = null, string $receiverVatNumber = null, string $entityVatNumber = null, InvoiceType|string $invType = null, string $maxMark = null, string $nextPartitionKey = null, string $nextRowKey = null): RequestedDoc

    {

        $query = compact('mark');



        $invType = $invType instanceof InvoiceType ? $invType->value : $invType;

        
<?php         $invType = $invType instanceof InvoiceType ? $invType->value : $invType;

        

        $params = compact('dateFrom', 'dateTo', 'receiverVatNumber', 'entityVatNumber', 'invType', 'maxMark', 'nextPartitionKey', 'nextRowKey');

        


        $query = array_merge($query, array_filter($params));
<?php     {

        $invType = $invType instanceof InvoiceType ? $invType->value : $invType;

        

        $query = compact('dateFrom', 'dateTo', 'counterVatNumber', 'entityVatNumber', 'invType', 'nextPartitionKey', 'nextRowKey');

        $query = array_filter($query);