Skip to content
Permalink
8.x
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 13 lines (11 sloc) 184 Bytes
<?php
namespace Illuminate\Contracts\Support;
interface Arrayable
{
/**
* Get the instance as an array.
*
* @return array
*/
public function toArray();
}