1: <?php namespace Illuminate\Support\Contracts; 2: 3: interface ArrayableInterface { 4: 5: /** 6: * Get the instance as an array. 7: * 8: * @return array 9: */ 10: public function toArray(); 11: 12: } 13: