Psalm
Get started
Documentation
Paid support
Plugins
Blog
GitHub
<?php declare(strict_types=1); /** * @template T */ interface I { /** * @return T */ public function process(); } /** * @implements I<int> */ final class B implements I { public function process() { return ''; } }
Snippet created on February 8 2023 at 14:27 UTC
Settings
Get link