// SYSTEM PANEL //
[ROOT]
/
opt
/
alt
/
tests
/
alt-php84-pecl-psr_1.2.0-1.el8
/
tests
[ PARENT ]
EDIT :: PsrContainerContainerInterface.phpt
--TEST-- Psr\Container\ContainerInterface --SKIPIF-- <?php include('skip.inc'); ?> --FILE-- <?php use Psr\Container\ContainerInterface; class MyImpl implements ContainerInterface { public function get(string $id) {} public function has(string $id) {} } $ex = new MyImpl(); var_dump($ex instanceof ContainerInterface); --EXPECT-- bool(true)
SAVE
CANCEL