| .. | |||||
| Arrayable.php | |||||
| Jsonable.php | |||||
| Renderable.php |
<?php
namespace Give\Framework\Support\Contracts;
/**
* @since 2.18.0
*/
interface Arrayable
{
/**
* Get the instance as an array.
*
* @since 2.18.0
*
* @return array
*/
public function toArray();
}
| .. | |||||
| Arrayable.php | |||||
| Jsonable.php | |||||
| Renderable.php |