~ballot/wordpress/openstack-objectstorage-bis

« back to all changes in this revision

Viewing changes to vendor/guzzlehttp/guzzle/src/ToArrayInterface.php

  • Committer: Benjamin Allot
  • Date: 2020-07-02 16:31:38 UTC
  • Revision ID: benjamin.allot@canonical.com-20200702163138-qyk6njanak5uw2pg
Revert to revno 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
namespace GuzzleHttp;
3
 
 
4
 
/**
5
 
 * An object that can be represented as an array
6
 
 */
7
 
interface ToArrayInterface
8
 
{
9
 
    /**
10
 
     * Get the array representation of an object
11
 
     *
12
 
     * @return array
13
 
     */
14
 
    public function toArray();
15
 
}