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