Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Finds whether a variable is an array
<?php is_array(mixed $value): bool
<?php             $responseDoc->appendChild($responseNode);



            foreach ($response->attributes() as $key => $value) {

                if (is_array($value)) {

                    $parent = $dom->createElement($key);

                    $responseNode->appendChild($parent);

                    
<?php     public function handle(PaymentMethod|array $paymentMethods): ResponseDoc

    {

        $paymentMethods = is_array($paymentMethods) ? $paymentMethods : [$paymentMethods];



        return $this->request(new PaymentMethodsDocWriter(), new ResponseDocReader(), $paymentMethods);

    }
<?php     public function set($key, $value): static

    {

        if (($key === 'invoiceDetails' || $key === 'otherTransportDetails') && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if (($key === 'expensesClassification' || $key === 'incomeClassification') && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if (in_array($key, ['correlatedInvoices', 'otherCorrelatedEntities', 'multipleConnectedMarks']) && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if (($key === 'expensesClassification' || $key === 'incomeClassification') && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if ($key === 'paymentMethodDetails' && !is_array($value)) {

            return $this->addPaymentMethodDetails($value);

        }
<?php     public function set($key, $value): static

    {

        if ($key === 'bookInfo' && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if ($key === 'E3Info' && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function set($key, $value): static

    {

        if ($key === 'VatInfo' && !is_array($value)) {

            return $this->push($key, $value);

        }
<?php     public function __construct(string|array $vehicleNumber = null)

    {

        if (is_array($vehicleNumber)) {

            parent::__construct($vehicleNumber);

        } else if ($vehicleNumber !== null) {

            parent::__construct(['vehicleNumber' => $vehicleNumber]);
<?php             }



            $this->$set(

                is_array($value) && isset($value[0])

                    ? array_map(fn($v) => is_object($v) ? $v : new $cast($v), $value)

                    : new $cast($value)

            );
<?php         foreach ($this->attributes() as $key => $value) {

            if ($value instanceof Type) {

                $array[$key] = $value->toArray();

            } elseif (is_array($value)) {

                $array[$key] = array_map(fn($v) => $v instanceof Type ? $v->toArray() : $v, $value);

            } elseif ($this->isEnum($key) && is_object($value)) {

                $array[$key] = $value->value;
<?php     public function set($key, $value): static

    {

        $value = is_array($value) ? $value : [$value];

        $this->attributes[$this->childKey] = $value;

        return $this;

    }
<?php     public function push($key, $value = null): static

    {

        if (is_array($value)) {

            $this->attributes[$this->childKey] = array_merge($this->attributes[$this->childKey], $value);

        } else {

            $this->attributes[$this->childKey][] = $value;