Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/vendor/laminas/laminas-stdlib/src/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-stdlib/src/ArraySerializableInterface.php

<?php

declare(strict_types=1);

namespace Laminas\Stdlib;

interface ArraySerializableInterface
{
    /**
     * Exchange internal values from provided array
     *
     * @return void
     */
    public function exchangeArray(array $array);

    /**
     * Return an array representation of the object
     *
     * @return array
     */
    public function getArrayCopy();
}