• File: Arrayable.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Contracts/Support/Arrayable.php
  • File size: 184 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Illuminate\Contracts\Support;

interface Arrayable
{
    /**
     * Get the instance as an array.
     *
     * @return array
     */
    public function toArray();
}