mirror of
https://github.com/flarum/framework.git
synced 2025-05-01 17:14:05 +08:00
20 lines
237 B
Plaintext
20 lines
237 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Contracts\Support;
|
|
|
|
interface Htmlable
|
|
{}
|
|
|
|
interface Arrayable
|
|
{
|
|
/**
|
|
* Get the instance as an array.
|
|
*
|
|
* @return array<mixed>
|
|
*/
|
|
public function toArray();
|
|
}
|
|
|
|
interface Jsonable
|
|
{}
|