Files
wyczarujprezent.pl/modules/pshowlazyimg/vendor/guzzlehttp/guzzle/src/ToArrayInterface.php
2024-10-28 22:14:22 +01:00

16 lines
241 B
PHP

<?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();
}