Source of file ArrayableInterface.php
Size: 0,356 Bytes - Last Modified: 2018-11-03T09:50:48-04:00
G:/AdobeConnectClient/src/ArrayableInterface.php
| 1234567891011121314151617181920 | <?phpnamespace AdobeConnectClient; /** * Grant the items in an array to use in Request */interface ArrayableInterface {/** * Converts the attributes in an associative array * * The keys need be in hash style: Ex: is-member * The values need be a string * * @return string[] */public function toArray(); } |