ToArrayInterface.php

Namespace

Guzzle\Common

File

drupal/core/vendor/guzzle/common/Guzzle/Common/ToArrayInterface.php
View source
<?php

namespace Guzzle\Common;


/**
 * An object that can be represented as an array
 */
interface ToArrayInterface {

  /**
   * Get the array representation of an object
   *
   * @return array
   */
  public function toArray();

}

Interfaces

Namesort descending Description
ToArrayInterface An object that can be represented as an array