psalm-plugin-laravel/stubs/Container.stubphp
2021-06-21 17:38:17 -07:00

27 lines
519 B
Plaintext

<?php
namespace Illuminate\Contracts\Container;
use Closure;
use Psr\Container\ContainerInterface;
interface Container extends ContainerInterface, \ArrayAccess
{
/**
* @param mixed $offset
* @return mixed
*
* @since 5.0.0
*/
public function offsetGet($offset);
/**
* @param mixed $offset The offset to assign the value to.
* @param mixed $value The value to set.
* @return void
*
* @since 5.0.0
*/
public function offsetSet($offset, $value);
}