0
如何將PHP泛型與Intellij一起使用?PHP泛型與Intellij
class Person<T> {
public function __construct(T $key){
}
}
的IntelliJ標記Person<T>
的錯誤,因爲<T>
。
我使用:
- PHP 7.0.1版
- 的IntelliJ 14.1.5
參照這個網站:https://wiki.php.net/rfc/generics
泛型不支持,甚至沒有完全在PHP 7.1中計劃,所以它不僅僅是一個解析器錯誤... – Mvorisek