1
0
mirror of https://github.com/flarum/core.git synced 2025-06-09 00:04:01 +02:00
Matthew Kilgore 05aa62f70c feat: STUBS!
2021-12-01 17:36:36 -05:00

17 lines
262 B
Plaintext

<?php
namespace Illuminate\Contracts\Container;
/** @extends \ArrayAccess<string, mixed> */
interface Container extends \ArrayAccess
{
}
namespace Illuminate\Contracts\Foundation;
interface Application extends \Illuminate\Contracts\Container\Container
{
}