14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
<?php
|
|
|
|
namespace Psr\Container {
|
|
interface ContainerInterface
|
|
{
|
|
/**
|
|
* @template T of object
|
|
* @param class-string<T>|string $id
|
|
* @return ($id is class-string<T> ? T : mixed)
|
|
*/
|
|
public function get(string $id): mixed;
|
|
}
|
|
}
|