mirror of
https://github.com/flarum/framework.git
synced 2025-05-01 17:14:05 +08:00
17 lines
262 B
Plaintext
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
|
|
{
|
|
|
|
}
|