1
0
mirror of https://github.com/flarum/core.git synced 2025-06-29 22:25:48 +02:00
Files
php-flarum/php-packages/phpstan/stubs/Contracts/Support.stub
Matthew Kilgore 05aa62f70c feat: STUBS!
2021-12-01 17:36:36 -05:00

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
{}