phpmyadmin/tests/stubs/psr.stub
Maurício Meneghini Fauth a82b8e22a8
Add static analysis stub for PSR ContainerInterface
Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2025-07-15 18:37:24 -03:00

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