如何在我的示例中使用PhpStorm 的 Structural Search找到具有返回类型的方法foo?boolean
<?php
class test {
public function hello() {
return true;
}
/**
* @return bool
*/
public function foo(): boolean {
return true;
}
}
$t = new test();
$t->foo();
我尝试了以下搜索模板:
class $a$ {
public function $show$(): boolean {
$content$
}
}
我在哪里可以了解有关这些代码/搜索模板的更多信息?