blob: 5ad93b70bd3bc6e906c225a02e20d1376795c89b [file] [log] [blame]
<?php
namespace Illuminate\Contracts\Support;
interface Arrayable
{
/**
* Get the instance as an array.
*
* @return array
*/
public function toArray();
}