Bill B
- 活动总数 9
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 3
-
创建于 Unresolved variable even with jsdoc specified
I'm getting Unresolved variable version warnings in PhpStorm even though I'm using JSDoc to document the relevant variable. In the code below (which is a greatly simplified version of my code) I'm... -
创建于 Phpstorm - extend class in another project
I have two projects (a WordPress Parent Theme and a WordPress Child Theme). I'm using PSR-4 autoloading and in my Child Theme project I'm extending a class found in my Parent Theme project. This ... -
创建于 Unresolved warnings for JavaScript alert() and window
In a JavaScript file with the following code/** * Created by billb on 11/14/2014. */var test = 1;var todo = 1;if (window) { alert(test + todo);}I'm getting weak warnings for both "window" and "al...