You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It still doesn't work. ->willReturn() is "not found in class MyOtherClass" by PhpStorm.
Is it safe to assume that this will be implemented together with issue #9?
Add autocomplete for class variables initialized in setUp() similar to the ones initialized in __construct().
Example:
class someTest extends .... {
private $var;
function setUp() {
$this->var = new SomeClass();
}
function testSomething() {
$this->var->[expect autocomplete here with the methods of SomeClass]
}
}
The text was updated successfully, but these errors were encountered: