Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Join array elements with a string
Alias join
<?php implode(string $separator, array $array): string
<?php             $attributes[] = $invoiceVariationType instanceof InvoiceVariationType ? $invoiceVariationType->value : $invoiceVariationType;

        }

        

        return strtoupper(sha1(implode('-', $attributes)));

    }
<?php     private function generateRowKey(InvoiceDetails $row): string

    {

        return implode('-', [

            $row->getVatCategory()->value ?? '',

            $row->getVatExemptionCategory()->value ?? '',

            $row->getWithheldPercentCategory()->value ?? '',

            $row->getFeesPercentCategory()->value ?? '',

            $row->getOtherTaxesPercentCategory()->value ?? '',

            $row->getStampDutyPercentCategory()->value ?? '',

            $row->getNotVAT195() ? '1' : '',

        ]);

    }
<?php         }



        foreach ($classifications as $classification) {

            $iclsKey = implode('-', [

                ($classification->getClassificationCategory()->value ?? ''),

                ($classification->getClassificationType()->value ?? ''),

            ]);



            $squashedIcls = $this->squashedIcls[$rowKey][$iclsKey] ??= new IncomeClassification([

                'classificationCategory' => $classification->getClassificationCategory(),
<?php         }



        foreach ($classifications as $classification) {

            $eclsKey = implode('-', [

                ($classification->getClassificationCategory()->value ?? ''),

                ($classification->getClassificationType()->value ?? ''),

                ($classification->getVatCategory()->value ?? ''),

                ($classification->getVatExemptionCategory()->value ?? ''),

            ]);



            $squashedEcls = $this->squashedEcls[$rowKey][$eclsKey] ??= new ExpensesClassification([

                'classificationCategory' => $classification->getClassificationCategory(),