File "ToArrayInterface.php"

Full path: /home/cakedeco/retaildirectonline.co.uk/system/storage/vendor/guzzlehttp/guzzle/src/ToArrayInterface.php
File size: 241 B (241 B bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

<?php
namespace GuzzleHttp;

/**
 * An object that can be represented as an array
 */
interface ToArrayInterface
{
    /**
     * Get the array representation of an object
     *
     * @return array
     */
    public function toArray();
}