Details |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 3 |
liveuser |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
namespace Guzzle\Common;
|
|
|
4 |
|
|
|
5 |
/**
|
|
|
6 |
* An object that can be represented as an array
|
|
|
7 |
*/
|
|
|
8 |
interface ToArrayInterface
|
|
|
9 |
{
|
|
|
10 |
/**
|
|
|
11 |
* Get the array representation of an object
|
|
|
12 |
*
|
|
|
13 |
* @return array
|
|
|
14 |
*/
|
|
|
15 |
public function toArray();
|
|
|
16 |
}
|