mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
16 lines
242 B
PHP
16 lines
242 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();
|
|
}
|