mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
15 lines
229 B
PHP
15 lines
229 B
PHP
<?php
|
|
|
|
/** @template T */
|
|
class A {
|
|
/**
|
|
* @param int $id
|
|
* @param ?int $lockMode
|
|
* @param ?int $lockVersion
|
|
* @return ?T
|
|
*/
|
|
public function find($id, $lockMode = null, $lockVersion = null) {}
|
|
}
|
|
|
|
|