It should be possible to support PSR-11 using: ```php <?php class Container extends \Psr\Container\ContainerInterface { public function get(string $id) { // ... } public function has(string $id) { // ... } } ``` Any ideas?