Files
newwalls.pl/modules/psaddonsconnect/vendor/guzzlehttp/guzzle/src/ToArrayInterface.php
2024-12-17 13:43: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();
}